@kintobrasil/kinto-brasil-checklist-sinistro-components
Version:
16 lines (15 loc) • 386 B
TypeScript
import React from 'react';
export interface SelectBadgesItem {
label: string;
value: string;
sublabel?: string;
group?: string;
}
interface OwnProps {
items: SelectBadgesItem[];
groups?: string[];
value?: string[];
onChange?: (value?: string[]) => void;
}
declare const SelectBadges: (props: OwnProps) => React.ReactElement;
export default SelectBadges;