type ActionButtonListGroupProps = { disabled?: boolean; onCreate?: () => void; onDelete?: () => void; deleteLabel?: string }; export const ActionButtonListGroup = ({ disabled = false, onCreate, onDelete, deleteLabel = '선택 삭제', }: ActionButtonListGroupProps) => { return (
{onDelete && ( )}
{onCreate && ( )}
); };