import type * as G from "../../types/global"; import type React from "react"; export type Props = { /** Pick at which viewport sizes to hide the children*/ hide?: G.Responsive; /** Use visibility hidden instead of display none */ visibility?: boolean; /** Custom root element html tag */ as?: keyof React.JSX.IntrinsicElements; /** Node for inserting children */ children: React.ReactNode; };