mirror of
https://github.com/withastro/astro.git
synced 2025-09-29 00:54:11 +08:00
14 lines
205 B
Plaintext
14 lines
205 B
Plaintext
---
|
|
export interface Props extends Record<any, any> {
|
|
type?: string;
|
|
}
|
|
|
|
const { type, ...props } = {
|
|
...Astro.props,
|
|
} as Props;
|
|
|
|
props.type = type || "button";
|
|
---
|
|
|
|
<button {...props}><slot /></button>
|