astro/examples/component/packages/my-component/Button.astro
2021-12-22 16:11:05 -05: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>