@cimpress/react-components
Version:
React components to support the MCP styleguide
12 lines • 405 B
TypeScript
import React, { CSSProperties } from 'react';
export interface SelectableCardProps {
label?: string;
image?: string;
cardStyle?: CSSProperties;
selected?: boolean;
onCardSelected?: () => void;
onCardDeselected?: () => void;
size?: 'sm' | 'lg';
}
export default function SelectableCard(props: SelectableCardProps): React.JSX.Element;
//# sourceMappingURL=SelectableCard.d.ts.map