Files
web/components/TempDesignSystem/ShowMoreButton/showMoreButton.ts
2024-10-16 13:55:06 +02:00

14 lines
394 B
TypeScript

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