@rsksmart/rif-ui
Version:
Exposes common components to be re used in RIF projects
10 lines (9 loc) • 384 B
TypeScript
import React, { FC } from 'react';
import { LabeledCheckboxProps } from './LabeledCheckbox';
export interface FilterCheckboxCardProps {
className?: string;
items: LabeledCheckboxProps[];
onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
}
declare const FilterCheckboxCard: FC<FilterCheckboxCardProps>;
export default FilterCheckboxCard;