UNPKG

preact-material-components

Version:
13 lines (12 loc) 494 B
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;