Icon
Last updated: 2.0.0 (21/01/2024)
Usage
import { Icon } from "@valence-ui/core";
import { Icon123 } from "@tabler/icons-react";
function MyComponent() {
return (
<Icon>
<Icon123 />
</Icon>
)
}Override default styles
import { Icon } from "@valence-ui/core";
import { Icon123 } from "@tabler/icons-react";
function MyComponent() {
return (
<Icon
size={30}
stroke={2}
color="blue"
>
<Icon123 />
</Icon>
)
}Props
Property
Type
Description
Last updated