@itgold/grandbazar-ui-kit
Version:
Grandbazar.io UI component library: React, Typescript, Tailwind, Rollup, Storybook, Jest.
9 lines (8 loc) • 370 B
TypeScript
/// <reference types="react" />
import { TLinkSizes } from '@/components';
import { TLinkSharedProps } from '@/components/link/types/TLinkSharedProps';
export type TLinkProps = TLinkSharedProps & {
colorScheme?: string;
size: TLinkSizes;
};
export declare function Link({ children, href, innerRef, onClick, size, colorScheme, }: TLinkProps): React.ReactElement;