UNPKG

styled-icons

Version:

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

14 lines (13 loc) 939 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Capsule = 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", { d: "M8.434 20.566c1.335 0 2.591-.52 3.535-1.464l7.134-7.133a5.008 5.008 0 00-.001-7.072 4.969 4.969 0 00-3.536-1.463c-1.335 0-2.59.52-3.534 1.464l-7.134 7.133a5.01 5.01 0 00-.001 7.072 4.971 4.971 0 003.537 1.463zm5.011-14.254a2.979 2.979 0 012.12-.878c.802 0 1.556.312 2.122.878a3.004 3.004 0 01.001 4.243l-2.893 2.892-4.242-4.244 2.892-2.891z", key: "k0" }))); }); Capsule.displayName = 'Capsule'; export var CapsuleDimensions = { height: 24, width: 24 };