UNPKG

@moderntribe/wme-ui

Version:

Components and hooks to build the best UX/UI admin wizards

15 lines 483 B
import type React from 'react'; import { ToggleButtonProps } from '@mui/material'; interface CardSelectItemProps extends ToggleButtonProps { primary?: any; secondary?: any; footer?: any; hasFooter?: boolean; icon?: any; cardPadding?: 'sm' | 'md'; defaultIcon?: React.ReactNode; completedIcon?: React.ReactNode; } export default function CardSelectItem(props: CardSelectItemProps): JSX.Element; export {}; //# sourceMappingURL=card-select-item.d.ts.map