UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

24 lines 795 B
import React from 'react'; import { TEXT_SIZES } from './constants'; export type TypographyLinkProps = Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'type'> & { title?: string; disabled?: boolean; ellipsis?: boolean; size?: typeof TEXT_SIZES[number]; id?: string; children?: React.ReactNode; component?: unknown; ['aria-label']?: string; }; declare const Link: React.ForwardRefExoticComponent<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "type"> & { title?: string; disabled?: boolean; ellipsis?: boolean; size?: (typeof TEXT_SIZES)[number]; id?: string; children?: React.ReactNode; component?: unknown; "aria-label"?: string; } & React.RefAttributes<HTMLElement>>; export { Link, }; //# sourceMappingURL=link.d.ts.map