UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 801 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var MoveDown = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }), React.createElement("path", { d: "M12 11V5h-1v6H8.5l3 3 3-3zM5 4v3H2V4h3zm1-1H1v5h5V3zM1 10h1.5v1H1v-1zM3 10h1.5v1H3v-1zM5 10h1v1.5H5V10zM1 13.5h1V15H1v-1.5zM2.5 14H4v1H2.5v-1zM4.5 14H6v1H4.5v-1zM1 11.5h1V13H1v-1.5zM5 12h1v1.5H5V12z", key: "k0" }))); }); MoveDown.displayName = 'MoveDown'; export var MoveDownDimensions = { height: 16, width: 16 };