astro/examples/component/packages/my-component/Button.astro
2022-07-08 22:08:32 +02:00

13 lines
205 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>