UNPKG

@untitledui/icons

Version:

Official React library for Untitled UI Icons

18 lines (15 loc) 457 B
import { FC, SVGProps } from 'react'; interface Props extends SVGProps<SVGSVGElement> { color?: string; size?: number; } /** * Direction-aware icon pointing "forward". Renders as ArrowRight in LTR and mirrors in RTL. * * Uses the `data-rtl-flip` attribute to flip via CSS. Add this rule to your global styles: * ```css * [data-rtl-flip]:dir(rtl) { transform: scaleX(-1); } * ``` */ declare const ArrowNext: FC<Props>; export { ArrowNext };