summaryrefslogtreecommitdiff
path: root/examples/component/packages/my-component/Button.astro
blob: 87943fa2809be4c6d789c06cd3158b2465b4a888 (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,
};

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

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