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) 237 B
import { FC, SVGProps } from 'react'; type CarouselArrowRightIconProps = SVGProps<SVGSVGElement> & { title?: string; className?: string; }; export declare const CarouselArrowRightIcon: FC<CarouselArrowRightIconProps>; export {};