import { cn } from './utils'; import type { VariantProps } from 'class-variance-authority'; import { cva } from 'class-variance-authority'; import { forwardRef, type HTMLAttributes } from 'react'; const variants = cva('rounded-sm border border-slate-100 bg-white'); export type BackgroundProps = HTMLAttributes & VariantProps; export const Background = forwardRef( ({ children, className, ...props }, ref) => (
{children}
) );