"use client"
import { Check } from "lucide-react"
import { Label } from "@/components/ui/label"
import { COMIC_STYLES } from "@/lib/constants"
interface StyleSelectorProps {
style: string
setStyle: (style: string) => void
}
export function StyleSelector({ style, setStyle }: StyleSelectorProps) {
return (
{/* Grid for style selection */}
{COMIC_STYLES.map((styleOption) => (
))}
)
}