033b70a7f8
* Add Component Example * chore(lint): Prettier fix * nit: improve implementation * nit: Update documentation Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
18 lines
No EOL
260 B
Text
18 lines
No EOL
260 B
Text
---
|
|
export interface Props extends Record<any, any> {
|
|
level?: number | string
|
|
role?: string
|
|
}
|
|
|
|
const {
|
|
level,
|
|
role,
|
|
...props
|
|
} = {
|
|
...Astro.props
|
|
} as Props
|
|
|
|
props.role = role || 'heading'
|
|
props['aria-level'] = level || '1'
|
|
---
|
|
<h {...props}><slot /></h> |