summaryrefslogtreecommitdiff
path: root/examples/component/packages/my-component/Button.astro
blob: 69b3b5eb518e5ecb11d5d693d376682b270177ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
export interface Props extends Record<any, any> {
	type?: string;
}

const { type, ...props } = {
	...Astro.props,
} as Props;

props.type = type || "button";
---

<button {...props}><slot /></button>