UNPKG

@dreamsparkx/parallax

Version:
16 lines (15 loc) 372 B
import { CSSProperties } from 'react'; export interface IProps { layers?: string[]; isStatic?: boolean; className?: string; style?: CSSProperties; } export interface IState { rootElemWidth: number; rootElemHeight: number; isOnHover: boolean; container: CSSProperties; shine: CSSProperties; layers: CSSProperties[]; }