Files
web/components/TempDesignSystem/BiroScript/index.tsx
2024-05-30 17:56:56 +02:00

18 lines
344 B
TypeScript

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 <span className={classNames}>{children}</span>
}