import { showMoreButtonVariants } from "./variants" import type { VariantProps } from "class-variance-authority" export interface ShowMoreButtonProps extends React.PropsWithChildren>, VariantProps { disabled?: boolean showLess?: boolean textShowMore?: string textShowLess?: string loadMoreData: () => void }