@wellness-icons/react 0.0.0-insiders.cdedd9f
Sign up to get free protection for your applications and to get access to all the features.
- package/24/outline/AcademicCapIcon.d.ts +3 -0
- package/24/outline/AcademicCapIcon.js +27 -0
- package/24/outline/esm/AcademicCapIcon.d.ts +3 -0
- package/24/outline/esm/AcademicCapIcon.js +27 -0
- package/24/outline/esm/index.d.ts +1 -0
- package/24/outline/esm/index.js +1 -0
- package/24/outline/esm/package.json +4 -0
- package/24/outline/index.d.ts +1 -0
- package/24/outline/index.js +1 -0
- package/24/outline/package.json +4 -0
- package/outline/index.js +16 -0
- package/package.json +22 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
|
3
|
+
function AcademicCapIcon({
|
4
|
+
title,
|
5
|
+
titleId,
|
6
|
+
...props
|
7
|
+
}, svgRef) {
|
8
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
10
|
+
fill: "none",
|
11
|
+
viewBox: "0 0 24 24",
|
12
|
+
strokeWidth: 1.5,
|
13
|
+
stroke: "currentColor",
|
14
|
+
"aria-hidden": "true",
|
15
|
+
ref: svgRef,
|
16
|
+
"aria-labelledby": titleId
|
17
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
18
|
+
id: titleId
|
19
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
20
|
+
strokeLinecap: "round",
|
21
|
+
strokeLinejoin: "round",
|
22
|
+
d: "M4.26 10.147a60.436 60.436 0 00-.491 6.347A48.627 48.627 0 0112 20.904a48.627 48.627 0 018.232-4.41 60.46 60.46 0 00-.491-6.347m-15.482 0a50.57 50.57 0 00-2.658-.813A59.905 59.905 0 0112 3.493a59.902 59.902 0 0110.399 5.84c-.896.248-1.783.52-2.658.814m-15.482 0A50.697 50.697 0 0112 13.489a50.702 50.702 0 017.74-3.342M6.75 15a.75.75 0 100-1.5.75.75 0 000 1.5zm0 0v-3.675A55.378 55.378 0 0112 8.443m-7.007 11.55A5.981 5.981 0 006.75 15.75v-1.5"
|
23
|
+
}));
|
24
|
+
}
|
25
|
+
|
26
|
+
const ForwardRef = React.forwardRef(AcademicCapIcon);
|
27
|
+
module.exports = ForwardRef;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
|
3
|
+
function AcademicCapIcon({
|
4
|
+
title,
|
5
|
+
titleId,
|
6
|
+
...props
|
7
|
+
}, svgRef) {
|
8
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
10
|
+
fill: "none",
|
11
|
+
viewBox: "0 0 24 24",
|
12
|
+
strokeWidth: 1.5,
|
13
|
+
stroke: "currentColor",
|
14
|
+
"aria-hidden": "true",
|
15
|
+
ref: svgRef,
|
16
|
+
"aria-labelledby": titleId
|
17
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
18
|
+
id: titleId
|
19
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
20
|
+
strokeLinecap: "round",
|
21
|
+
strokeLinejoin: "round",
|
22
|
+
d: "M4.26 10.147a60.436 60.436 0 00-.491 6.347A48.627 48.627 0 0112 20.904a48.627 48.627 0 018.232-4.41 60.46 60.46 0 00-.491-6.347m-15.482 0a50.57 50.57 0 00-2.658-.813A59.905 59.905 0 0112 3.493a59.902 59.902 0 0110.399 5.84c-.896.248-1.783.52-2.658.814m-15.482 0A50.697 50.697 0 0112 13.489a50.702 50.702 0 017.74-3.342M6.75 15a.75.75 0 100-1.5.75.75 0 000 1.5zm0 0v-3.675A55.378 55.378 0 0112 8.443m-7.007 11.55A5.981 5.981 0 006.75 15.75v-1.5"
|
23
|
+
}));
|
24
|
+
}
|
25
|
+
|
26
|
+
const ForwardRef = React.forwardRef(AcademicCapIcon);
|
27
|
+
export default ForwardRef;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AcademicCapIcon } from './AcademicCapIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AcademicCapIcon } from './AcademicCapIcon.js'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AcademicCapIcon } from './AcademicCapIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports.AcademicCapIcon = require("./AcademicCapIcon.js")
|
package/outline/index.js
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
let proxy = new Proxy(
|
2
|
+
{},
|
3
|
+
{
|
4
|
+
get: (obj, property) => {
|
5
|
+
if (property === '__esModule') {
|
6
|
+
return {}
|
7
|
+
}
|
8
|
+
|
9
|
+
throw new Error(
|
10
|
+
`You\'re trying to import \`@wellness-icons/react/outline/${property}\` from wellnes-icons v1 but have installed WellnessIcons v2. Install \`@wellness-icons/react@v1\` to resolve this error.`
|
11
|
+
)
|
12
|
+
},
|
13
|
+
}
|
14
|
+
)
|
15
|
+
|
16
|
+
module.exports = proxy
|
package/package.json
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"name": "@wellness-icons/react",
|
3
|
+
"license": "MIT",
|
4
|
+
"version": "0.0.0-insiders.cdedd9f",
|
5
|
+
"description": "",
|
6
|
+
"keywords": [],
|
7
|
+
"homepage": "https://github.com/saunaworlds/wellness-icons#readme",
|
8
|
+
"repository": {
|
9
|
+
"type": "git",
|
10
|
+
"url": "https://github.com/saunaworlds/wellness-icons.git"
|
11
|
+
},
|
12
|
+
"files": [
|
13
|
+
"24",
|
14
|
+
"outline"
|
15
|
+
],
|
16
|
+
"publishConfig": {
|
17
|
+
"access": "public"
|
18
|
+
},
|
19
|
+
"peerDependencies": {
|
20
|
+
"react": ">= 16"
|
21
|
+
}
|
22
|
+
}
|