@benefex/icons 0.2.13 → 0.3.0
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/dist/ArrowRightLight.d.ts +4 -0
- package/dist/ArrowRightLight.js +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const ArrowRightLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "m443.7 266.8-165.9 176c-3.3 3.5-8.7 5.2-12.3 5.2-3.986 0-7.988-1.375-11.16-4.156-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59C7.419 272 0 264.845 0 256.9S7.421 240 16.59 240h377.3L253.19 90.7c-6.157-6.531-5.655-16.66 1.118-22.59 6.789-5.906 17.27-5.469 23.45 1.094l165.9 176a15.73 15.73 0 0 1 .042 21.596" })));
|
|
5
|
+
export default ArrowRightLight;
|
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export { default as ArrowPointerRegular } from './ArrowPointerRegular';
|
|
|
10
10
|
export { default as ArrowPointerThin } from './ArrowPointerThin';
|
|
11
11
|
export { default as ArrowRightFromBracketLight } from './ArrowRightFromBracketLight';
|
|
12
12
|
export { default as ArrowRightFromBracketThin } from './ArrowRightFromBracketThin';
|
|
13
|
+
export { default as ArrowRightLight } from './ArrowRightLight';
|
|
13
14
|
export { default as ArrowRotateRightLight } from './ArrowRotateRightLight';
|
|
14
15
|
export { default as ArrowTrendUpLight } from './ArrowTrendUpLight';
|
|
15
16
|
export { default as ArrowUpRightAndArrowDownLeftFromCenterLight } from './ArrowUpRightAndArrowDownLeftFromCenterLight';
|
package/dist/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export { default as ArrowPointerRegular } from './ArrowPointerRegular';
|
|
|
10
10
|
export { default as ArrowPointerThin } from './ArrowPointerThin';
|
|
11
11
|
export { default as ArrowRightFromBracketLight } from './ArrowRightFromBracketLight';
|
|
12
12
|
export { default as ArrowRightFromBracketThin } from './ArrowRightFromBracketThin';
|
|
13
|
+
export { default as ArrowRightLight } from './ArrowRightLight';
|
|
13
14
|
export { default as ArrowRotateRightLight } from './ArrowRotateRightLight';
|
|
14
15
|
export { default as ArrowTrendUpLight } from './ArrowTrendUpLight';
|
|
15
16
|
export { default as ArrowUpRightAndArrowDownLeftFromCenterLight } from './ArrowUpRightAndArrowDownLeftFromCenterLight';
|