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