UNPKG

react-with-breakpoints

Version:

Utility React component for altering the visual experience of responsive and lean webpages.

9 lines (8 loc) 268 B
import * as React from 'react'; import { BreakpointEdge } from './utils/index'; interface HideAtProps { breakpoint: BreakpointEdge; children?: React.ReactNode; } export declare const HideAt: React.FunctionComponent<HideAtProps>; export default HideAt;