UNPKG

styled-icons

Version:

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

15 lines (14 loc) 1.04 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Riding = 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 24 24" }, props, { ref: ref }), React.createElement("path", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M5.5 21a4.5 4.5 0 110-9 4.5 4.5 0 010 9zm0-3a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm13 3a4.5 4.5 0 110-9 4.5 4.5 0 010 9zm0-3a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm-6.969-8.203L13 12v6h-2v-5l-2.719-2.266A2 2 0 018 7.671l2.828-2.828a2 2 0 012.829 0l1.414 1.414a6.969 6.969 0 003.917 1.975l-.01 2.015a8.962 8.962 0 01-5.321-2.575L11.53 9.797zM16 5a2 2 0 110-4 2 2 0 010 4z", key: "k1" }))); }); Riding.displayName = 'Riding'; export var RidingDimensions = { height: 24, width: 24 };