UNPKG

@tiiqu/ui

Version:

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

8 lines (7 loc) 234 B
import { FC, SVGProps } from 'react'; type CarouselArrowLeftIconProps = SVGProps<SVGSVGElement> & { title?: string; className?: string; }; export declare const CarouselArrowLeftIcon: FC<CarouselArrowLeftIconProps>; export {};