@bubbles-ui/icons 1.2.109 → 1.2.111
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 +1 -1
- package/solid/StudentIcon.d.ts +3 -0
- package/solid/StudentIcon.js +15 -0
- package/solid/TeacherIcon.d.ts +3 -0
- package/solid/TeacherIcon.js +22 -0
- package/solid/esm/StudentIcon.d.ts +3 -0
- package/solid/esm/StudentIcon.js +15 -0
- package/solid/esm/TeacherIcon.d.ts +3 -0
- package/solid/esm/TeacherIcon.js +22 -0
- package/solid/esm/index.d.ts +2 -0
- package/solid/esm/index.js +2 -0
- package/solid/index.d.ts +2 -0
- package/solid/index.js +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function StudentIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 18 19",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M9.15 2.02c-.841.31-5.11 1.915-5.148 1.935a.496.496 0 0 0-.21.23l-.042.092v2.736l.043.095a.492.492 0 0 0 .487.287.462.462 0 0 0 .32-.163c.13-.142.131-.145.131-1.206 0-.883.002-.934.032-.922a323.327 323.327 0 0 0 1.484.559c.03.012.032.076.032.989 0 .687.006.994.02 1.037a.745.745 0 0 0 .073.139l.051.077v.499c0 .65.038.916.18 1.273a2.857 2.857 0 0 0 2.094 1.776c.156.034.239.04.561.04.322 0 .405-.006.56-.04 1.215-.263 2.11-1.236 2.257-2.451.01-.084.018-.353.018-.599v-.445l.068-.069c.145-.144.138-.087.148-1.216l.009-1.005 1.125-.422c.618-.232 1.155-.442 1.192-.468a.536.536 0 0 0 .192-.302.504.504 0 0 0-.197-.488c-.04-.028-1.183-.466-2.64-1.013-2.728-1.024-2.689-1.01-2.84-.955ZM7.503 3.684l-1.825.687c-.026.012.419.186 1.782.697.999.375 1.824.681 1.834.681.01 0 .836-.306 1.835-.681 1.761-.661 1.815-.682 1.76-.705l-1.781-.67-1.769-.664c-.038-.014-.33.09-1.836.655Zm-.252 2.93c0 .313.004.57.01.57.004 0 .459.137 1.01.306.55.168 1.01.306 1.023.306.012 0 .473-.138 1.023-.306.551-.169 1.006-.306 1.01-.306.006 0 .01-.256.01-.567 0-.356-.006-.567-.018-.567-.01 0-.452.162-.984.361-.913.343-.972.362-1.067.355-.073-.006-.346-.1-1.027-.356-.51-.191-.941-.352-.958-.356-.03-.008-.032.027-.032.56Zm.15 1.978c.015.508.084.752.308 1.098.368.57 1.099.913 1.756.825.88-.12 1.54-.782 1.637-1.648.026-.225.025-.585-.001-.585-.011 0-.405.117-.875.26-.54.165-.883.262-.933.262-.049 0-.405-.1-.965-.271l-.913-.28c-.021-.007-.023.047-.014.339Zm1.338 3.767a4.619 4.619 0 0 0-3.268 1.989 4.577 4.577 0 0 0-.796 2.262c-.033.4-.004.552.13.688a.485.485 0 0 0 .762-.088c.057-.09.063-.123.082-.426.027-.444.1-.79.246-1.158a3.665 3.665 0 0 1 1.177-1.567c.022-.012.218.196.918.976.49.545.931 1.029.982 1.075.05.047.124.094.164.106a.529.529 0 0 0 .462-.082c.022-.017.44-.477.928-1.021.488-.545.906-1.01.928-1.033l.04-.042.165.138a3.67 3.67 0 0 1 1.235 2.17c.015.084.035.284.044.444.02.323.034.377.139.492.234.26.653.195.805-.127.034-.071.038-.11.036-.332-.012-1.248-.621-2.533-1.597-3.369a4.596 4.596 0 0 0-2.49-1.096 6.09 6.09 0 0 0-1.092.001Zm.276.955-.216.027c-.253.03-.81.177-.81.213 0 .01 1.158 1.309 1.267 1.42l.04.042.647-.72c.356-.396.649-.728.652-.737.011-.034-.455-.166-.748-.212a5.823 5.823 0 0 0-.832-.033Z",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
module.exports = StudentIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function TeacherIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 18 19",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
10
|
+
clipPath: "url(#a)"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M4.23 1.263a2.616 2.616 0 0 0-2.385 2.26c-.028.21-.013.685.028.87A2.624 2.624 0 0 0 4.05 6.456c.212.032.559.032.779-.001a2.623 2.623 0 0 0 2.13-1.89 2.71 2.71 0 0 0-.011-1.422 2.63 2.63 0 0 0-1.605-1.73 2.675 2.675 0 0 0-1.113-.15Zm4.377-.001a.495.495 0 0 0-.39.583c.037.176.19.332.363.369.062.013 1.25.02 3.877.02h3.787l.104.038a.6.6 0 0 1 .327.327l.039.104v4.624c0 4.606 0 4.625-.037 4.723a.592.592 0 0 1-.283.312l-.103.05-3.33.01-3.33.008-.081.042a.478.478 0 0 0-.275.445.49.49 0 0 0 .291.447l.083.038 3.195.006c2.155.003 3.265-.002 3.41-.014.402-.036.708-.177.982-.45a1.51 1.51 0 0 0 .449-.952c.026-.259.026-9.07 0-9.328a1.561 1.561 0 0 0-1.21-1.379c-.122-.03-.38-.032-3.955-.035-2.104-.001-3.865.004-3.913.012Zm-4.385.982c-.694.128-1.164.539-1.362 1.19-.043.141-.048.187-.048.428 0 .223.006.295.039.414.162.59.616 1.038 1.2 1.182.226.056.547.056.774 0a1.73 1.73 0 0 0 .886-.561c.118-.145.262-.43.313-.62a1.969 1.969 0 0 0 0-.81c-.196-.722-.8-1.204-1.532-1.225a2.558 2.558 0 0 0-.27.002ZM4.14 6.582l-.216.027a3.582 3.582 0 0 0-1.147.361 3.674 3.674 0 0 0-1.95 2.558c-.067.33-.083.732-.077 1.912l.006 1.044.043.095a.557.557 0 0 0 .122.166c.128.112.195.126.594.126.191 0 .348.002.348.005l.25 2.48c.23 2.303.251 2.483.291 2.563.05.1.136.18.25.233.081.038.091.038 1.783.038 1.688 0 1.701 0 1.782-.037a.485.485 0 0 0 .246-.23c.044-.086.056-.191.287-2.512.133-1.333.246-2.45.25-2.481l.01-.059h.347c.398 0 .466-.014.593-.126a.557.557 0 0 0 .123-.166l.043-.095v-1.26c-.001-1.111-.005-1.285-.033-1.474a3.701 3.701 0 0 0-3.072-3.134 6.13 6.13 0 0 0-.873-.034Zm-.387 1.06a2.69 2.69 0 0 0-1.48 1 2.817 2.817 0 0 0-.484 1.073c-.039.17-.04.223-.047 1.18L1.736 11.9h.347c.3.001.358.006.421.034a.5.5 0 0 1 .24.229c.04.08.061.26.292 2.562l.25 2.48c0 .003.518.005 1.15.005h1.15l.011-.085c.006-.047.117-1.147.246-2.444s.246-2.399.26-2.448a.484.484 0 0 1 .246-.286c.091-.045.104-.047.441-.047h.348v-.913c0-1.102-.015-1.244-.166-1.66a2.711 2.711 0 0 0-2.038-1.729L3.93 7.6l1.84-.636-.144.05-.375.129-.401.139-.435.15-.485.168c-.012 0-.091.02-.175.043Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
16
|
+
id: "a"
|
|
17
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M0 0h18v18H0z",
|
|
19
|
+
transform: "translate(0 .5)"
|
|
20
|
+
}))));
|
|
21
|
+
}
|
|
22
|
+
module.exports = TeacherIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function StudentIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 18 19",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M9.15 2.02c-.841.31-5.11 1.915-5.148 1.935a.496.496 0 0 0-.21.23l-.042.092v2.736l.043.095a.492.492 0 0 0 .487.287.462.462 0 0 0 .32-.163c.13-.142.131-.145.131-1.206 0-.883.002-.934.032-.922a323.327 323.327 0 0 0 1.484.559c.03.012.032.076.032.989 0 .687.006.994.02 1.037a.745.745 0 0 0 .073.139l.051.077v.499c0 .65.038.916.18 1.273a2.857 2.857 0 0 0 2.094 1.776c.156.034.239.04.561.04.322 0 .405-.006.56-.04 1.215-.263 2.11-1.236 2.257-2.451.01-.084.018-.353.018-.599v-.445l.068-.069c.145-.144.138-.087.148-1.216l.009-1.005 1.125-.422c.618-.232 1.155-.442 1.192-.468a.536.536 0 0 0 .192-.302.504.504 0 0 0-.197-.488c-.04-.028-1.183-.466-2.64-1.013-2.728-1.024-2.689-1.01-2.84-.955ZM7.503 3.684l-1.825.687c-.026.012.419.186 1.782.697.999.375 1.824.681 1.834.681.01 0 .836-.306 1.835-.681 1.761-.661 1.815-.682 1.76-.705l-1.781-.67-1.769-.664c-.038-.014-.33.09-1.836.655Zm-.252 2.93c0 .313.004.57.01.57.004 0 .459.137 1.01.306.55.168 1.01.306 1.023.306.012 0 .473-.138 1.023-.306.551-.169 1.006-.306 1.01-.306.006 0 .01-.256.01-.567 0-.356-.006-.567-.018-.567-.01 0-.452.162-.984.361-.913.343-.972.362-1.067.355-.073-.006-.346-.1-1.027-.356-.51-.191-.941-.352-.958-.356-.03-.008-.032.027-.032.56Zm.15 1.978c.015.508.084.752.308 1.098.368.57 1.099.913 1.756.825.88-.12 1.54-.782 1.637-1.648.026-.225.025-.585-.001-.585-.011 0-.405.117-.875.26-.54.165-.883.262-.933.262-.049 0-.405-.1-.965-.271l-.913-.28c-.021-.007-.023.047-.014.339Zm1.338 3.767a4.619 4.619 0 0 0-3.268 1.989 4.577 4.577 0 0 0-.796 2.262c-.033.4-.004.552.13.688a.485.485 0 0 0 .762-.088c.057-.09.063-.123.082-.426.027-.444.1-.79.246-1.158a3.665 3.665 0 0 1 1.177-1.567c.022-.012.218.196.918.976.49.545.931 1.029.982 1.075.05.047.124.094.164.106a.529.529 0 0 0 .462-.082c.022-.017.44-.477.928-1.021.488-.545.906-1.01.928-1.033l.04-.042.165.138a3.67 3.67 0 0 1 1.235 2.17c.015.084.035.284.044.444.02.323.034.377.139.492.234.26.653.195.805-.127.034-.071.038-.11.036-.332-.012-1.248-.621-2.533-1.597-3.369a4.596 4.596 0 0 0-2.49-1.096 6.09 6.09 0 0 0-1.092.001Zm.276.955-.216.027c-.253.03-.81.177-.81.213 0 .01 1.158 1.309 1.267 1.42l.04.042.647-.72c.356-.396.649-.728.652-.737.011-.034-.455-.166-.748-.212a5.823 5.823 0 0 0-.832-.033Z",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
export default StudentIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function TeacherIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 18 19",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
10
|
+
clipPath: "url(#a)"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M4.23 1.263a2.616 2.616 0 0 0-2.385 2.26c-.028.21-.013.685.028.87A2.624 2.624 0 0 0 4.05 6.456c.212.032.559.032.779-.001a2.623 2.623 0 0 0 2.13-1.89 2.71 2.71 0 0 0-.011-1.422 2.63 2.63 0 0 0-1.605-1.73 2.675 2.675 0 0 0-1.113-.15Zm4.377-.001a.495.495 0 0 0-.39.583c.037.176.19.332.363.369.062.013 1.25.02 3.877.02h3.787l.104.038a.6.6 0 0 1 .327.327l.039.104v4.624c0 4.606 0 4.625-.037 4.723a.592.592 0 0 1-.283.312l-.103.05-3.33.01-3.33.008-.081.042a.478.478 0 0 0-.275.445.49.49 0 0 0 .291.447l.083.038 3.195.006c2.155.003 3.265-.002 3.41-.014.402-.036.708-.177.982-.45a1.51 1.51 0 0 0 .449-.952c.026-.259.026-9.07 0-9.328a1.561 1.561 0 0 0-1.21-1.379c-.122-.03-.38-.032-3.955-.035-2.104-.001-3.865.004-3.913.012Zm-4.385.982c-.694.128-1.164.539-1.362 1.19-.043.141-.048.187-.048.428 0 .223.006.295.039.414.162.59.616 1.038 1.2 1.182.226.056.547.056.774 0a1.73 1.73 0 0 0 .886-.561c.118-.145.262-.43.313-.62a1.969 1.969 0 0 0 0-.81c-.196-.722-.8-1.204-1.532-1.225a2.558 2.558 0 0 0-.27.002ZM4.14 6.582l-.216.027a3.582 3.582 0 0 0-1.147.361 3.674 3.674 0 0 0-1.95 2.558c-.067.33-.083.732-.077 1.912l.006 1.044.043.095a.557.557 0 0 0 .122.166c.128.112.195.126.594.126.191 0 .348.002.348.005l.25 2.48c.23 2.303.251 2.483.291 2.563.05.1.136.18.25.233.081.038.091.038 1.783.038 1.688 0 1.701 0 1.782-.037a.485.485 0 0 0 .246-.23c.044-.086.056-.191.287-2.512.133-1.333.246-2.45.25-2.481l.01-.059h.347c.398 0 .466-.014.593-.126a.557.557 0 0 0 .123-.166l.043-.095v-1.26c-.001-1.111-.005-1.285-.033-1.474a3.701 3.701 0 0 0-3.072-3.134 6.13 6.13 0 0 0-.873-.034Zm-.387 1.06a2.69 2.69 0 0 0-1.48 1 2.817 2.817 0 0 0-.484 1.073c-.039.17-.04.223-.047 1.18L1.736 11.9h.347c.3.001.358.006.421.034a.5.5 0 0 1 .24.229c.04.08.061.26.292 2.562l.25 2.48c0 .003.518.005 1.15.005h1.15l.011-.085c.006-.047.117-1.147.246-2.444s.246-2.399.26-2.448a.484.484 0 0 1 .246-.286c.091-.045.104-.047.441-.047h.348v-.913c0-1.102-.015-1.244-.166-1.66a2.711 2.711 0 0 0-2.038-1.729L3.93 7.6l1.84-.636-.144.05-.375.129-.401.139-.435.15-.485.168c-.012 0-.091.02-.175.043Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
16
|
+
id: "a"
|
|
17
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M0 0h18v18H0z",
|
|
19
|
+
transform: "translate(0 .5)"
|
|
20
|
+
}))));
|
|
21
|
+
}
|
|
22
|
+
export default TeacherIcon;
|
package/solid/esm/index.d.ts
CHANGED
|
@@ -148,9 +148,11 @@ export { default as SettingsIcon } from './SettingsIcon'
|
|
|
148
148
|
export { default as ShapePyramidIcon } from './ShapePyramidIcon'
|
|
149
149
|
export { default as StarAlternateIcon } from './StarAlternateIcon'
|
|
150
150
|
export { default as StarIcon } from './StarIcon'
|
|
151
|
+
export { default as StudentIcon } from './StudentIcon'
|
|
151
152
|
export { default as SubtractCircleAlternateIcon } from './SubtractCircleAlternateIcon'
|
|
152
153
|
export { default as SubtractSquareAlternateIcon } from './SubtractSquareAlternateIcon'
|
|
153
154
|
export { default as TagIcon } from './TagIcon'
|
|
155
|
+
export { default as TeacherIcon } from './TeacherIcon'
|
|
154
156
|
export { default as TravelPlacesTheaterMaskIcon } from './TravelPlacesTheaterMaskIcon'
|
|
155
157
|
export { default as TwitchIcon } from './TwitchIcon'
|
|
156
158
|
export { default as TwitterIcon } from './TwitterIcon'
|
package/solid/esm/index.js
CHANGED
|
@@ -148,9 +148,11 @@ export { default as SettingsIcon } from './SettingsIcon.js'
|
|
|
148
148
|
export { default as ShapePyramidIcon } from './ShapePyramidIcon.js'
|
|
149
149
|
export { default as StarAlternateIcon } from './StarAlternateIcon.js'
|
|
150
150
|
export { default as StarIcon } from './StarIcon.js'
|
|
151
|
+
export { default as StudentIcon } from './StudentIcon.js'
|
|
151
152
|
export { default as SubtractCircleAlternateIcon } from './SubtractCircleAlternateIcon.js'
|
|
152
153
|
export { default as SubtractSquareAlternateIcon } from './SubtractSquareAlternateIcon.js'
|
|
153
154
|
export { default as TagIcon } from './TagIcon.js'
|
|
155
|
+
export { default as TeacherIcon } from './TeacherIcon.js'
|
|
154
156
|
export { default as TravelPlacesTheaterMaskIcon } from './TravelPlacesTheaterMaskIcon.js'
|
|
155
157
|
export { default as TwitchIcon } from './TwitchIcon.js'
|
|
156
158
|
export { default as TwitterIcon } from './TwitterIcon.js'
|
package/solid/index.d.ts
CHANGED
|
@@ -148,9 +148,11 @@ export { default as SettingsIcon } from './SettingsIcon'
|
|
|
148
148
|
export { default as ShapePyramidIcon } from './ShapePyramidIcon'
|
|
149
149
|
export { default as StarAlternateIcon } from './StarAlternateIcon'
|
|
150
150
|
export { default as StarIcon } from './StarIcon'
|
|
151
|
+
export { default as StudentIcon } from './StudentIcon'
|
|
151
152
|
export { default as SubtractCircleAlternateIcon } from './SubtractCircleAlternateIcon'
|
|
152
153
|
export { default as SubtractSquareAlternateIcon } from './SubtractSquareAlternateIcon'
|
|
153
154
|
export { default as TagIcon } from './TagIcon'
|
|
155
|
+
export { default as TeacherIcon } from './TeacherIcon'
|
|
154
156
|
export { default as TravelPlacesTheaterMaskIcon } from './TravelPlacesTheaterMaskIcon'
|
|
155
157
|
export { default as TwitchIcon } from './TwitchIcon'
|
|
156
158
|
export { default as TwitterIcon } from './TwitterIcon'
|
package/solid/index.js
CHANGED
|
@@ -148,9 +148,11 @@ module.exports.SettingsIcon = require("./SettingsIcon.js")
|
|
|
148
148
|
module.exports.ShapePyramidIcon = require("./ShapePyramidIcon.js")
|
|
149
149
|
module.exports.StarAlternateIcon = require("./StarAlternateIcon.js")
|
|
150
150
|
module.exports.StarIcon = require("./StarIcon.js")
|
|
151
|
+
module.exports.StudentIcon = require("./StudentIcon.js")
|
|
151
152
|
module.exports.SubtractCircleAlternateIcon = require("./SubtractCircleAlternateIcon.js")
|
|
152
153
|
module.exports.SubtractSquareAlternateIcon = require("./SubtractSquareAlternateIcon.js")
|
|
153
154
|
module.exports.TagIcon = require("./TagIcon.js")
|
|
155
|
+
module.exports.TeacherIcon = require("./TeacherIcon.js")
|
|
154
156
|
module.exports.TravelPlacesTheaterMaskIcon = require("./TravelPlacesTheaterMaskIcon.js")
|
|
155
157
|
module.exports.TwitchIcon = require("./TwitchIcon.js")
|
|
156
158
|
module.exports.TwitterIcon = require("./TwitterIcon.js")
|