Props

interface IProps {
    bordered?: boolean;
    children?: ReactNode;
    disabled?: boolean;
    loading?: boolean;
    onDelete: () => Promise<void>;
    text?: string | ReactElement;
    title?: string;
}

Properties

bordered?: boolean
children?: ReactNode
disabled?: boolean
loading?: boolean
onDelete: () => Promise<void>
text?: string | ReactElement
title?: string