website/src/components/Button.astro
2024-07-29 16:48:24 -04:00

9 lines
No EOL
206 B
Text

---
const {position, text, url, id} = Astro.props;
---
<style>
button, a {
width: 100%;
}
</style>
{url ? <a href={url}><button id={id}>{text}</button></a> : <button id={id}>{text}</button>}