UNPKG

preact-material-components

Version:
14 lines (12 loc) 368 B
import MaterialComponent from '../MaterialComponent'; import {VNode} from 'preact'; declare interface IIconButtonProps { 'data-toggle-on'?: string; 'data-toggle-off'?: string; } export default class IconButton< PropsType = JSX.HTMLAttributes, StateType = {} > extends MaterialComponent<PropsType & IIconButtonProps, StateType> { static Icon: typeof Icon; }