preact-material-components
Version:
preact wrapper for "Material Components for the web"
13 lines (12 loc) • 494 B
TypeScript
import MaterialComponent from '../Base/MaterialComponent';
export interface IElevationProps {
z?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 24;
}
export interface IElevationState {
}
export declare class Elevation extends MaterialComponent<IElevationProps, IElevationState> {
protected componentName: string;
protected mdcProps: string[];
protected materialDom(props: any): JSX.Element;
}
export default Elevation;