@generation/icons 1.1.9 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@generation/icons",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "SVG bases React icon components",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -331,6 +331,7 @@ import {
331
331
  TimelineFill,
332
332
  TimelineFillOut,
333
333
  TimerFill,
334
+ TimerFillMid,
334
335
  TimerFillOut,
335
336
  Times,
336
337
  TimesCircleFill,
@@ -704,6 +705,7 @@ const icons = {
704
705
  TimelineFill,
705
706
  TimelineFillOut,
706
707
  TimerFill,
708
+ TimerFillMid,
707
709
  TimerFillOut,
708
710
  Times,
709
711
  TimesCircleFill,
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ const TimerFillMid = (props) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="currentColor"
8
+ viewBox="0 0 24 24"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#prefix__a)">
12
+ <path
13
+ fill="#000"
14
+ d="m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2zm10 14.5V20H8v-3.5l4-4z"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="prefix__a">
19
+ <path fill="#fff" d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ );
24
+ export default TimerFillMid;
@@ -327,6 +327,7 @@ export { default as TimeFillOut } from './TimeFillOut';
327
327
  export { default as TimelineFill } from './TimelineFill';
328
328
  export { default as TimelineFillOut } from './TimelineFillOut';
329
329
  export { default as TimerFill } from './TimerFill';
330
+ export { default as TimerFillMid } from './TimerFillMid';
330
331
  export { default as TimerFillOut } from './TimerFillOut';
331
332
  export { default as Times } from './Times';
332
333
  export { default as TimesCircleFill } from './TimesCircleFill';