UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

8 lines (7 loc) 304 B
import type { HeadingLevel, PropDisabled, PropLabel, PropOpen } from '../props'; export type RequiredProps = PropLabel; export type OptionalProps = { level: HeadingLevel; } & PropDisabled & PropOpen; export type RequiredStates = RequiredProps & PropLabel; export type OptionalStates = OptionalProps;