astro/examples/component/packages/my-component/Heading.astro
2022-08-26 10:16:17 -04:00

15 lines
256 B
Text

---
export interface Props extends Record<any, any> {
level?: number | string;
role?: string;
}
const { level, role, ...props } = {
...Astro.props,
};
props.role = role || 'heading';
props['aria-level'] = level || '1';
---
<h {...props}><slot /></h>