@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
18 lines • 658 B
TypeScript
import type React from 'react';
import { ListItemProps } from '@mui/material';
import { ChipProps } from '..';
export interface WmeListItemCheckoutProps extends ListItemProps {
name?: string;
price?: string;
disabled?: boolean;
selected?: boolean;
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
icon?: React.ReactElement;
iconDisabled?: React.ReactElement;
iconSelected?: React.ReactElement;
chipColor?: ChipProps['color'];
chipLabel?: ChipProps['label'];
}
declare const ListItemCheckout: React.FC<WmeListItemCheckoutProps>;
export default ListItemCheckout;
//# sourceMappingURL=list-item-checkout.d.ts.map