preact-material-components
Version:
preact wrapper for "Material Components for the web"
13 lines (12 loc) • 431 B
TypeScript
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;