UNPKG

@ftdata/icons

Version:

Fulltime Styleguide Icons

9 lines (8 loc) 561 B
/// <reference types="react" /> import { CommonIconProps } from '..'; export declare type IconsArrows = 'arw arrow-down' | 'arw arrow-up' | 'arw arrow-left' | 'arw arrow-left-down' | 'arw arrow-left-up' | 'arw arrow-right' | 'arw arrow-right-down' | 'arw arrow-right-up' | 'arw caret-down' | 'arw caret-up' | 'arw caret-left' | 'arw caret-right' | 'arw arrange-filter-sort-alt'; interface ArrowsProps extends CommonIconProps { name: IconsArrows; } export default function Arrows({ color, name, size, weight, ...rest }: ArrowsProps): JSX.Element; export {};