9 lines
No EOL
206 B
Text
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>} |