@untitledui/icons
Version:
Official React library for Untitled UI Icons
18 lines (15 loc) • 463 B
text/typescript
import { FC, SVGProps } from 'react';
interface Props extends SVGProps<SVGSVGElement> {
color?: string;
size?: number;
}
/**
* Direction-aware icon pointing "forward". Renders as ChevronRight 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 ChevronNext: FC<Props>;
export { ChevronNext };