15 lines
201 B
Text
15 lines
201 B
Text
|
---
|
||
|
export interface Props extends Record<any, any> {
|
||
|
type?: string
|
||
|
}
|
||
|
|
||
|
const {
|
||
|
type,
|
||
|
...props
|
||
|
} = {
|
||
|
...Astro.props
|
||
|
} as Props
|
||
|
|
||
|
props.type = type || 'button'
|
||
|
---
|
||
|
<button {...props}><slot /></button>
|