import type { ButtonPropsRAC } from "@scandic-hotels/design-system/OldDSButton" import type { VariantProps } from "class-variance-authority" import type { showMoreButtonVariants } from "./variants" export interface ShowMoreButtonProps extends React.PropsWithChildren>, VariantProps { disabled?: boolean showLess?: boolean textShowMore?: string textShowLess?: string loadMoreData: () => void intent?: ButtonPropsRAC["intent"] }