UNPKG

styled-icons

Version:

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

14 lines (13 loc) 842 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var QuoteSingleRight = 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.804 17.02L8 17.18V20h1c2.783 0 4.906-.771 6.309-2.292C17.196 15.66 17.006 13.03 17 13V5a1 1 0 00-1-1H9c-1.103 0-2 .897-2 2v7a1 1 0 001 1H12.078a2.89 2.89 0 01-.429 1.396c-.507.801-1.464 1.347-2.845 1.624z", key: "k0" }))); }); QuoteSingleRight.displayName = 'QuoteSingleRight'; export var QuoteSingleRightDimensions = { height: 24, width: 24 };