A button component with support for different colors, sizes and states out of the box. You can also customize it to your needs!
---import { Button } from 'studiocms:ui/components';---
<Button color='primary'> Button</Button>
You can disable the button component via the disabled
attribute:
---import { Button } from 'studiocms:ui/components';---
<Button color='primary' disabled> Button</Button>
The button component supports three different sizes out of the box:
---import { Button } from 'studiocms:ui/components';---
<Button color='primary' size='sm'> Button (sm)</Button><Button color='primary'> Button (default)</Button><Button color='primary' size='lg'> Button (lg)</Button>
There is five default colorways that can be used right away:
---import { Button } from 'studiocms:ui/components';---
<Button color='default'> Default</Button><Button color='primary'> Primary</Button><Button color='success'> Success</Button><Button color='warning'> Warning</Button><Button color='danger'> Danger</Button><Button color='info'> Info</Button><Button color='mono'> Monochrome</Button>
In addition to colors, the button component can be displayed in three different variants:
---import { Button } from 'studiocms:ui/components';---
<Button color='primary'> Default</Button><Button color='primary' variant="outlined"> Outlined</Button><Button color='primary' variant="flat"> Flat</Button>
Thanks to Astro’s Polymorphic
type, you can change the button’s parent component into whatever HTML tag you need it to be!
Here’s an example where the button is an <a>
tag instead of a <button>
:
---import { Button } from 'studiocms:ui/components';---
<Button color='primary' target="_blank" as='a' href="https://studiocms.dev"> studiocms.dev</Button>
As mentioned earlier, you can apply your custom styles to the button component! Here’s a gradient button to show you how it’s done:
---import { Button } from 'studiocms:ui/components';---
<Button style="background-image: linear-gradient(to top right, #a07cee, #4ff8d2); color: black; font-weight: 600;"> Custom Button</Button>
---import { Button } from 'studiocms:ui/components';---
<Button class="custom-btn"> Custom Button</Button><style> .custom-btn { background-image: linear-gradient(to top right, #a07cee, #4ff8d2) !important; color: black !important; font-weight: 600 !important; }</style>