UNPKG

styled-icons

Version:

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

14 lines (13 loc) 909 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Pager = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "-.125em", iconViewBox: "0 0 512 512" }, props, { ref: ref }), React.createElement("path", { fill: "currentColor", d: "M448 64H64a64 64 0 00-64 64v256a64 64 0 0064 64h384a64 64 0 0064-64V128a64 64 0 00-64-64zM160 368H80a16 16 0 01-16-16v-16a16 16 0 0116-16h80zm128-16a16 16 0 01-16 16h-80v-48h80a16 16 0 0116 16zm160-128a32 32 0 01-32 32H96a32 32 0 01-32-32v-64a32 32 0 0132-32h320a32 32 0 0132 32z", key: "k0" }))); }); Pager.displayName = 'Pager'; export var PagerDimensions = { height: undefined, width: undefined };