astro/examples/component/packages/my-component/Button.astro

14 lines
196 B
Text
Raw Normal View History

---
export interface Props extends Record<any, any> {
2021-12-22 21:11:05 +00:00
type?: string;
}
2021-12-22 21:11:05 +00:00
const { type, ...props } = {
...Astro.props,
};
2022-08-06 04:39:26 +00:00
props.type = type || 'button';
---
2021-12-22 21:11:05 +00:00
<button {...props}><slot /></button>