Grid Button
Last updated: 3.0.0 (04/07/2024)
Usage
import { GridButton } from "@valence-ui/core";
import { Icon123 } from "@tabler/icons-react";
function MyComponent() {
return (
<GridButton
icon={<Icon123 />}
>
Grid button
</GridButton>
)
}Change icon position
import { GridButton } from "@valence-ui/core";
import { Icon123 } from "@tabler/icons-react";
function MyComponent() {
return (
<GridButton
icon={<Icon123 />}
iconPosition="bottom"
>
Grid button
</GridButton>
)
}Props
Property
Type
Description
Changelog
Last updated