"use client"
import { useState } from "react"
import { Check } from "lucide-react"
import { Label } from "@/components/ui/label"
const COMIC_STYLES = [
{ id: "american-modern", name: "American Modern" },
{ id: "manga", name: "Manga" },
{ id: "noir", name: "Noir" },
{ id: "vintage", name: "Vintage" },
]
export function StyleSelector() {
const [selectedStyle, setSelectedStyle] = useState("noir")
return (
{/* Grid for style selection */}
{COMIC_STYLES.map((style) => (
))}
)
}