UNPKG

geostyler

Version:
7 lines (6 loc) 285 B
import { default as React } from 'react'; export interface RemovableItemProps extends React.PropsWithChildren { /** The callback that is being called, when the item was clicked. */ onRemoveClick?: () => void; } export declare const RemovableItem: React.FC<RemovableItemProps>;