import { biroScriptVariants } from "./variants" import type { BiroScriptProps } from "./biroScript" export default function BiroScript({ children, className, color, type, }: BiroScriptProps) { const classNames = biroScriptVariants({ className, color, type, }) return {children} }