The Hidden
component is a utility component that will help you hide or show content/components in different viewports.
<Hidden on="narrow"><Placeholder height="80px" label="This is not visible in narrow viewport" /></Hidden>
<Hidden on={['narrow', 'wide']}><Placeholder height="80px" label="This is not visible in narrow and wide viewport" /></Hidden>
Name | Type | Default | Description |
---|---|---|---|
on | 'narrow' | 'wide' | 'regular' | Array<'narrow' | 'regular' | 'wide'> | In which viewport(s) the children are going to be hidden |