UNPKG

@public-ui/components

Version:

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

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