We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b69e0bc commit 688418cCopy full SHA for 688418c
src/Button/IconButton.dev.stories.tsx
@@ -9,3 +9,15 @@ export default {
9
export const CustomSize = () => (
10
<IconButton aria-label="Expand" variant="primary" size="small" icon={ChevronDownIcon} sx={{width: 16, height: 16}} />
11
)
12
+
13
+export const CustomSizeWithMedia = () => {
14
+ return (
15
+ <IconButton
16
+ aria-label="Expand"
17
+ variant="primary"
18
+ size="small"
19
+ icon={ChevronDownIcon}
20
+ sx={{'@media (min-width: 123px)': {width: 16, height: 16}}}
21
+ />
22
+ )
23
+}
0 commit comments