UNPKG

@coveord/plasma-mantine

Version:

A Plasma flavoured Mantine theme

14 lines 532 B
import { GroupProps } from '@mantine/core'; import { FunctionComponent, PropsWithChildren } from 'react'; interface CollectionItemProps extends CollectionItemSharedProps { draggable?: boolean; disabled: boolean; } interface CollectionItemSharedProps extends GroupProps { id: string; onRemove?: React.MouseEventHandler<HTMLButtonElement>; removable?: boolean; } export declare const CollectionItem: FunctionComponent<PropsWithChildren<CollectionItemProps>>; export {}; //# sourceMappingURL=CollectionItem.d.ts.map