UNPKG

styled-icons

Version:

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

14 lines (13 loc) 701 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Pacman = 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: "M15.074 2.794a8 8 0 100 10.412L10 8l5.074-5.206zM11 1.884a1.116 1.116 0 110 2.232 1.116 1.116 0 010-2.232z", key: "k0" }))); }); Pacman.displayName = 'Pacman'; export var PacmanDimensions = { height: 16, width: 16 };