UNPKG

@itgold/grandbazar-ui-kit

Version:

Grandbazar.io UI component library: React, Typescript, Tailwind, Rollup, Storybook, Jest.

10 lines (8 loc) 240 B
import { TLinkTarget } from '@/components/link/types/TLinkTarget'; export type TLinkSharedProps = { children: React.ReactNode; href: string; onClick?: () => void; innerRef?: React.Ref<HTMLAnchorElement>; target?: TLinkTarget; };