UNPKG

styled-icons

Version:

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

16 lines (15 loc) 1.32 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Station = 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("circle", { cx: 12, cy: 12, r: 2, key: "k0" }), React.createElement("path", { d: "M7.758 16.243l1.414-1.415a3.97 3.97 0 01-1.173-2.831c0-1.068.417-2.071 1.173-2.825L7.758 7.756a5.957 5.957 0 00-1.76 4.24c0 1.604.625 3.112 1.76 4.247zm8.484 0A5.96 5.96 0 0018 12a5.96 5.96 0 00-1.758-4.243l-1.414 1.414C15.584 9.927 16 10.932 16 12s-.416 2.073-1.172 2.829l1.414 1.414z", key: "k1" }), React.createElement("path", { d: "M6.344 17.657a7.953 7.953 0 01-2.345-5.659c0-2.137.833-4.145 2.345-5.654L4.93 4.929c-1.89 1.886-2.931 4.397-2.931 7.069s1.041 5.183 2.931 7.073l1.414-1.414zM17.657 6.343A7.948 7.948 0 0120 12a7.948 7.948 0 01-2.343 5.657l1.414 1.414A9.932 9.932 0 0022 12a9.934 9.934 0 00-2.929-7.071l-1.414 1.414z", key: "k2" }))); }); Station.displayName = 'Station'; export var StationDimensions = { height: 24, width: 24 };