UNPKG

@public-ui/components

Version:

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

8 lines (7 loc) 437 B
import type { Generic } from 'adopted-style-sheets'; import type { PropAlternativeButtonLinkRole } from '../props'; import type { OptionalProps as LinkOptionalProps, RequiredProps as LinkRequiredProps } from './link'; type RequiredProps = LinkRequiredProps; type OptionalProps = Omit<LinkOptionalProps, keyof PropAlternativeButtonLinkRole>; export type LinkButtonProps = Generic.Element.Members<RequiredProps, OptionalProps>; export {};