UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.16 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Bell = 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: "M16.023 12.5c0-4.5-4-3.5-4-7 0-.29-.028-.538-.079-.749-.263-1.766-1.44-3.183-2.965-3.615A.86.86 0 009 .945C9 .425 8.55 0 8 0S7 .425 7 .945c0 .065.007.129.021.191-1.71.484-2.983 2.208-3.02 4.273L4 5.5C4 9 0 8 0 12.5c0 1.191 2.665 2.187 6.234 2.439a2 2 0 003.532 0C13.334 14.688 16 13.691 16 12.5v-.011l.024.011zm-3.113.845c-.847.226-1.846.389-2.918.479a2 2 0 00-3.984 0c-1.072-.09-2.071-.253-2.918-.479-1.166-.311-1.724-.659-1.928-.845.204-.186.762-.534 1.928-.845 1.356-.362 3.1-.561 4.91-.561s3.554.199 4.91.561c1.166.311 1.724.659 1.928.845-.204.186-.762.534-1.928.845z", key: "k0" }))); }); Bell.displayName = 'Bell'; export var BellDimensions = { height: 16, width: 16 };