import { cva } from "class-variance-authority"; import React, { type ReactNode } from "react"; const rootStyles = cva([ "px-4", "scrollbar-none", "flex", "gap-10", "overflow-x-auto", ]); interface CardHorizontalProps { children: ReactNode; className?: string; } export const CardHorizontal = ({ children, className, }: CardHorizontalProps) => { return (
{children}
); };