UNPKG

preact-material-components

Version:
13 lines (12 loc) 431 B
import MaterialComponent from '../Base/MaterialComponent'; export interface IFormfieldProps extends JSX.HTMLAttributes { 'align-end'?: boolean; } export interface IFormfieldState { } export declare class Formfield extends MaterialComponent<IFormfieldProps, IFormfieldState> { protected componentName: string; protected mdcProps: string[]; protected materialDom(props: any): JSX.Element; } export default Formfield;