A simple button designed for rendering text. Uses the Text
component to render text. This is the default button; it will be used as Button
.
import { Button } from "@valence-ui/core";
function MyComponent() {
return (
<Button
size="md"
radius="sm"
variant="light"
>
A *markdown* compatible text button!
</Button>
)
}