@100mslive/react-icons 0.8.9 → 0.8.10-alpha.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/InteractionClosedIcon.d.ts +3 -0
- package/dist/InteractionClosedIcon.js +2 -0
- package/dist/InteractionClosedIcon.js.map +1 -0
- package/dist/InteractionOpenIcon.d.ts +3 -0
- package/dist/InteractionOpenIcon.js +2 -0
- package/dist/InteractionOpenIcon.js.map +1 -0
- package/dist/PersonRectangleIcon.d.ts +3 -0
- package/dist/PersonRectangleIcon.js +2 -0
- package/dist/PersonRectangleIcon.js.map +1 -0
- package/dist/QuizIcon.d.ts +3 -0
- package/dist/QuizIcon.js +2 -0
- package/dist/QuizIcon.js.map +1 -0
- package/dist/StatsIcon.d.ts +3 -0
- package/dist/StatsIcon.js +2 -0
- package/dist/StatsIcon.js.map +1 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/InteractionClosedIcon.tsx +16 -0
- package/src/InteractionOpenIcon.tsx +37 -0
- package/src/PersonRectangleIcon.tsx +21 -0
- package/src/QuizIcon.tsx +17 -0
- package/src/StatsIcon.tsx +16 -0
- package/src/index.ts +5 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgStatsIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg width="24px" height="24px" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M23.334 25.333V13.667M16.334 25.333V6.667M9.334 25.334v-7"
|
|
8
|
+
stroke="currentColor"
|
|
9
|
+
strokeWidth={2.5}
|
|
10
|
+
strokeLinecap="round"
|
|
11
|
+
strokeLinejoin="round"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
export default SvgStatsIcon;
|
package/src/index.ts
CHANGED
|
@@ -126,6 +126,8 @@ export { default as HorizontalMenuIcon } from './HorizontalMenuIcon';
|
|
|
126
126
|
export { default as InfoIcon } from './InfoIcon';
|
|
127
127
|
export { default as InformationIcon } from './InformationIcon';
|
|
128
128
|
export { default as InformationSolidIcon } from './InformationSolidIcon';
|
|
129
|
+
export { default as InteractionClosedIcon } from './InteractionClosedIcon';
|
|
130
|
+
export { default as InteractionOpenIcon } from './InteractionOpenIcon';
|
|
129
131
|
export { default as InviteIcon } from './InviteIcon';
|
|
130
132
|
export { default as InviteStageIcon } from './InviteStageIcon';
|
|
131
133
|
export { default as JavascriptIcon } from './JavascriptIcon';
|
|
@@ -176,6 +178,7 @@ export { default as PeopleIcon } from './PeopleIcon';
|
|
|
176
178
|
export { default as PeopleRemoveIcon } from './PeopleRemoveIcon';
|
|
177
179
|
export { default as PersonContactIcon } from './PersonContactIcon';
|
|
178
180
|
export { default as PersonIcon } from './PersonIcon';
|
|
181
|
+
export { default as PersonRectangleIcon } from './PersonRectangleIcon';
|
|
179
182
|
export { default as PhoneIcon } from './PhoneIcon';
|
|
180
183
|
export { default as PhotoIcon } from './PhotoIcon';
|
|
181
184
|
export { default as PinIcon } from './PinIcon';
|
|
@@ -189,6 +192,7 @@ export { default as PrevIcon } from './PrevIcon';
|
|
|
189
192
|
export { default as QrCodeIcon } from './QrCodeIcon';
|
|
190
193
|
export { default as QuestionIcon } from './QuestionIcon';
|
|
191
194
|
export { default as QuestionMarkIcon } from './QuestionMarkIcon';
|
|
195
|
+
export { default as QuizIcon } from './QuizIcon';
|
|
192
196
|
export { default as RadioIcon } from './RadioIcon';
|
|
193
197
|
export { default as ReactIcon } from './ReactIcon';
|
|
194
198
|
export { default as RecordIcon } from './RecordIcon';
|
|
@@ -218,6 +222,7 @@ export { default as SpeakerIcon } from './SpeakerIcon';
|
|
|
218
222
|
export { default as SpotlightIcon } from './SpotlightIcon';
|
|
219
223
|
export { default as SquareMenuIcon } from './SquareMenuIcon';
|
|
220
224
|
export { default as StarIcon } from './StarIcon';
|
|
225
|
+
export { default as StatsIcon } from './StatsIcon';
|
|
221
226
|
export { default as StopIcon } from './StopIcon';
|
|
222
227
|
export { default as SunIcon } from './SunIcon';
|
|
223
228
|
export { default as SunWithFaceIcon } from './SunWithFaceIcon';
|