UNPKG

@tiiqu/ui

Version:

A customizable, accessible, and developer-friendly React UI component library powered by Tailwind CSS, TypeScript, and Vite

9 lines (8 loc) 251 B
import { FC, SVGProps } from 'react'; type ArrowIconProps = SVGProps<SVGSVGElement> & { title?: string; className?: string; direction?: "top" | "right" | "bottom" | "left"; }; export declare const ArrowIcon: FC<ArrowIconProps>; export {};