Skip to content

Commit 249ed2a

Browse files
committed
Switch from mdi to material-symbols
1 parent b93a874 commit 249ed2a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.changeset/fluffy-geckos-tease.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@badrap/libapp": patch
3+
---
4+
5+
Switch from mdi to material-symbols

src/ui/experimental/Button.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type ButtonProps = {
1010
children?: UiNode;
1111
} & (
1212
| {
13-
icon: `mdi:${string}`;
13+
icon: `material-symbols:${string}`;
1414
iconOnly?: Responsive<boolean>;
1515
}
1616
| {

src/ui/experimental/Icon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Responsive, UiNode, element } from "../internal.js";
22

33
type IconProps = {
4-
icon: `mdi:${string}`;
4+
icon: `material-symbols:${string}`;
55
size?: Responsive<"xs" | "sm" | "md">;
66
color?: "base" | "gray" | "red" | "orange" | "yellow" | "green" | "blue";
77
};

0 commit comments

Comments
 (0)