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