opencode/packages/ui/src/components/icon.css

35 lines
519 B
CSS
Raw Normal View History

2025-10-14 20:14:26 +08:00
[data-component="icon"] {
2026-01-31 01:58:31 +08:00
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
/* resize: both; */
aspect-ratio: 1/1;
2026-01-31 01:58:31 +08:00
color: var(--icon-base);
2025-10-23 06:31:44 +08:00
2026-01-31 01:58:31 +08:00
&[data-size="small"] {
width: 16px;
height: 16px;
}
2025-10-23 06:31:44 +08:00
2026-01-31 01:58:31 +08:00
&[data-size="normal"] {
width: 20px;
height: 20px;
}
2025-10-23 06:31:44 +08:00
2026-01-31 01:58:31 +08:00
&[data-size="medium"] {
width: 24px;
height: 24px;
}
2026-01-21 06:03:00 +08:00
2026-01-31 01:58:31 +08:00
&[data-size="large"] {
width: 24px;
height: 24px;
}
2025-10-23 06:31:44 +08:00
2026-01-31 01:58:31 +08:00
[data-slot="icon-svg"] {
width: 100%;
height: auto;
}
2025-10-14 20:14:26 +08:00
}