apphouse
Version:
Component library for React that uses observable state management and theme-able components.
14 lines (13 loc) • 342 B
TypeScript
import React from 'react';
import { ButtonProps } from '../Button';
interface FilterButtonProps extends ButtonProps {
/**
* If set, the button will change colors
*/
selected: boolean;
}
/**
* A button that has a filter icon associated with it.
*/
export declare const ButtonFilter: React.FC<FilterButtonProps>;
export {};