Button
Buttons are used to trigger an action or event, such as submitting a form, opening a modal, or serving as a link to another page.
API Reference
This component is based on the <button>
and <a>
HTML elements. The following are the props that can be passed to the component.
Prop | Type | Default |
---|---|---|
variant | "contained" | "outlined" | "subtle" | "text" | "contained" |
size | "sm" | "md" | "lg" | "md" |
title | string | — |
icon | boolean | false |
href | string | — |
disabled | boolean | false |
Accessibility
The <Button>
component has some accessibility features that are important to consider when implementing it in your project. The following are some of the key accessibility features that are included in the component:
- When the button renders as a
<button>
element, the component includes the atype
property that can be changed and defaults tobutton
. This is important for screen readers to understand the purpose of the button. - When a button has the
icon
prop set totrue
, the button will omit the text and only display the icon. The text will still be included in the button for screen readers to understand the purpose of the button. - You can use the
title
prop to provide a tooltip for the button. This is useful for providing additional context about the purpose of a button, especially so with icon buttons.
Examples
Variants
Use the variant
prop to adjust the visual style. Buttons come in the following variants: contained
, outlined
, subtle
, text
, and icon
. Variants should be added, removed, and tweaked as necessary based on the needs of the project.
<Button variant="contained">Contained</Button><Button variant="outlined">Outlined</Button><Button variant="subtle">Subtle</Button><Button variant="text">Text</Button>
<button type="button" data-component="Button" class="btn-contained"> Contained</button><button type="button" data-component="Button" class="btn-outlined"> Outlined</button><button type="button" data-component="Button" class="btn-subtle"> Subtle</button><button type="button" data-component="Button" class="btn-text"> Text</button>
Sizes
Use the size
prop to adjust the size. Buttons come in the following different sizes: sm
, md
, and lg
. By default, buttons will use md
unless specified. Sizes should be added, removed, and tweaked as necessary based on the needs of the project.
<Button size="sm">Button</Button><Button>Button</Button><Button size="lg">Button</Button>
<button type="button" data-component="Button" class="btn-contained btn-sm"> Button</button><button type="button" data-component="Button" class="btn-contained"> Button</button><button type="button" data-component="Button" class="btn-contained btn-lg"> Button</button>
Icon
Use the icon
prop to make the button into an icon button. Button Icons are buttons that only contain an icon. They are useful for situations where you want to provide a button that is only an icon, such as in a toolbar. By adding the btn-icon class, the button will have a 1:1 aspect ration and the text will be omitted and used only for screen-reader purposes.
---import { Icon } from '@astrojs/starlight/components'---
<Button icon variant="subtle" title="More Information"> <Icon name="information" /> More Information</Button>
<button type="button" data-component="Button" class="btn-subtle btn-icon" title="More Information"> <svg aria-hidden="true" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;" data-astro-source-file="/home/eric/dev/starlight-docs/node_modules/@astrojs/starlight/user-components/Icon.astro" data-astro-source-loc="16:2"><path d="M12 11a1 1 0 0 0-1 1v4a1 1 0 0 0 2 0v-4a1 1 0 0 0-1-1Zm.38-3.92a1 1 0 0 0-.76 0 1 1 0 0 0-.33.21 1.15 1.15 0 0 0-.21.33 1 1 0 0 0 .21 1.09c.097.088.209.16.33.21A1 1 0 0 0 13 8a1.05 1.05 0 0 0-.29-.71 1 1 0 0 0-.33-.21ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18a8 8 0 1 1 0-16.001A8 8 0 0 1 12 20Z"></path></svg> More Information</button>
Link
Use the href
prop to convert a button to a link element. This is useful when you want to use a button style to navigate to another page.
On Dark Backgrounds
Buttons can be used on dark backgrounds by adding the dark
class to the an ancestor DOM node. THis will invert the colors of the pagination component.
<Button>Button</Button>
Astro Component
Depending on the framework, it’s sometimes beneficial to use a component for generating the button. In this case, we have put together the following Astro component to serve as a blueprint for how you could possibly set up a Button component, and what properties to consider.
---import type { HTMLTag, Polymorphic } from 'astro/types'
type Props<Tag extends HTMLTag> = Polymorphic<{ /** The HTML tag to render for the component. By default the component will render as a `button` unless `href` is defined, at which point it will render as an `a`. */ as: Tag /** The variant the button will take. Corresponds to the design system. */ variant?: 'contained' | 'outlined' | 'subtle' | 'text' /** The size of the button. Corresponds to the design system. */ size?: 'sm' | 'md' | 'lg' /** The tooltip/assistive text to display on the button. */ title?: string /** Whether the button should be an icon only button or not. If `true`, the button will omit the text, become a 1:1 aspect ratio, and only display the icon. */ icon?: boolean /** The URL to link to. Passing in a value will cause the element to render as an anchor. */ href?: string /** Button type (if applicable). Do not add a type if `href` is set. */ type?: 'button' | 'submit' | undefined /** Whether the button is disabled or not. */ disabled?: boolean}>
const { as: Tag, variant = 'contained', size = 'md', title, icon = false, href = undefined, type = href ? undefined : 'button', disabled = false, class: className, ...attrs} = Astro.props
const Element = Tag ? Tag : href && !disabled ? 'a' : 'button'---
<Element href={!disabled ? href : undefined} disabled={disabled} type={type} title={title} class:list={[ { 'btn-contained': variant === 'contained', 'btn-outlined': variant === 'outlined', 'btn-subtle': variant === 'subtle', 'btn-text': variant === 'text', 'btn-icon': icon, 'btn-sm': size === 'sm', 'btn-lg': size === 'lg', }, className, ]} data-component="Button" {...attrs}> <slot /></Element>