@xipkg/icons 1.2.0 → 1.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/icons/DetailedAnswerTest.tsx +11 -0
- package/icons/DoubleBottomArrows.tsx +11 -0
- package/icons/DoubleUpArrows.tsx +11 -0
- package/icons/Hint.tsx +11 -0
- package/icons/OptionSelectionTest.tsx +11 -0
- package/icons/SimpleAnswertTest.tsx +11 -0
- package/index.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const DetailedAnswerTest = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
d="M7.32 3.041c-1.344.058-1.884.201-2.587.686-.772.533-1.336 1.33-1.533 2.165-.172.731-.18 1.006-.18 6.108 0 5.102.008 5.377.18 6.108.201.853.787 1.665 1.581 2.194.576.383 1.013.527 1.899.626.663.075 9.977.075 10.64 0 .885-.099 1.323-.243 1.899-.626a4.043 4.043 0 0 0 1.083-1.083c.383-.576.527-1.014.626-1.899.075-.663.075-9.977 0-10.64-.099-.885-.243-1.323-.626-1.899-.388-.582-1.032-1.133-1.641-1.402-.296-.131-.769-.243-1.281-.302-.478-.056-8.9-.086-10.06-.036M17.531 5.09c.149.037.361.115.47.174.265.144.659.561.778.824.202.445.201.405.201 5.912s.001 5.467-.201 5.912c-.134.296-.535.702-.836.848-.462.223-.369.22-5.943.22s-5.481.003-5.943-.22c-.301-.146-.702-.552-.836-.848-.202-.445-.201-.405-.201-5.912s-.001-5.467.201-5.912c.188-.412.703-.853 1.131-.966.381-.102.987-.113 5.848-.105 4.55.007 5.087.014 5.331.073M7.78 7.037c-.75.185-1.017 1.115-.475 1.658.063.062.186.152.274.199l.161.086h8.52l.161-.086c.366-.196.553-.498.553-.894s-.187-.698-.553-.894l-.161-.086-4.18-.006c-2.299-.004-4.234.007-4.3.023m-.116 4.026a1.005 1.005 0 0 0-.533.448c-.095.161-.111.233-.111.489s.016.328.111.489c.061.103.17.234.243.289.298.228.204.222 3.624.222 3.547 0 3.392.013 3.703-.299a.984.984 0 0 0 0-1.402c-.312-.312-.154-.299-3.718-.296-2.641.002-3.189.012-3.319.06m.116 3.974c-.751.188-1.017 1.115-.475 1.658.063.062.186.152.274.199.159.085.185.086 2.421.086 2.236 0 2.262-.001 2.421-.086.366-.196.553-.498.553-.894s-.187-.698-.553-.894c-.159-.085-.193-.086-2.341-.093-1.199-.003-2.234.007-2.3.024"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const DoubleBottomArrows = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
d="M6.699 6.195a1.099 1.099 0 0 0-.504.504c-.1.22-.097.589.008.821.062.138.68.779 2.669 2.766 1.423 1.422 2.65 2.617 2.726 2.655.076.038.248.078.382.089.47.038.357.134 3.269-2.781 2.541-2.546 2.627-2.636 2.688-2.846.078-.27.078-.337.002-.594a.971.971 0 0 0-.436-.563c-.144-.094-.203-.106-.503-.106-.301 0-.358.012-.5.107-.088.058-1.123 1.07-2.3 2.249l-2.139 2.143L9.88 8.462C8.224 6.808 7.657 6.265 7.52 6.203c-.232-.105-.6-.108-.821-.008m.188 4.888c-.41.08-.767.514-.767.932.001.462-.142.296 2.713 3.158 1.478 1.48 2.693 2.667 2.777 2.711a.949.949 0 0 0 .734.058c.235-.068.242-.074 2.847-2.675 1.884-1.881 2.636-2.657 2.7-2.787.242-.493.001-1.129-.509-1.342a1.122 1.122 0 0 0-.787.014c-.13.059-.735.641-2.335 2.244-1.188 1.19-2.177 2.164-2.199 2.164-.022 0-1.021-.978-2.22-2.174-1.353-1.348-2.234-2.197-2.321-2.235a1.109 1.109 0 0 0-.633-.068"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const DoubleUpArrows = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
d="M11.62 6.064c-.185.058-.397.259-2.811 2.669-1.884 1.881-2.636 2.657-2.7 2.787-.242.493-.001 1.129.509 1.342.219.091.571.085.787-.014.13-.059.735-.641 2.335-2.244 1.188-1.19 2.177-2.164 2.199-2.164.022 0 1.021.978 2.22 2.174 1.465 1.46 2.232 2.197 2.338 2.245.173.079.579.095.743.029.367-.147.64-.534.64-.906-.001-.459.14-.295-2.713-3.155-1.544-1.547-2.691-2.666-2.782-2.713a1.075 1.075 0 0 0-.765-.05m-.06 4.976c-.136.063-.824.726-2.791 2.692-2.369 2.367-2.618 2.628-2.69 2.82A1.284 1.284 0 0 0 6 16.9c0 .209.144.55.29.685.263.244.344.275.71.275.301 0 .358-.012.5-.107.088-.058 1.123-1.07 2.3-2.249l2.139-2.143 2.181 2.177c1.656 1.654 2.223 2.197 2.36 2.259.37.167.833.084 1.117-.2a1.02 1.02 0 0 0 .2-1.117c-.062-.138-.68-.779-2.669-2.766-1.423-1.422-2.651-2.617-2.728-2.656-.219-.11-.622-.119-.84-.018"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
package/icons/Hint.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const Hint = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
d="M11.52 5.363a6.491 6.491 0 0 0-2.803.841A6.955 6.955 0 0 0 6.14 8.819a7.341 7.341 0 0 0-.745 2.241c-.065.412-.065 1.468 0 1.88.118.759.4 1.607.745 2.241.577 1.062 1.617 2.102 2.679 2.679a7.341 7.341 0 0 0 2.241.745c.414.065 1.47.064 1.88 0 1.055-.167 2.078-.575 2.9-1.156.487-.345 1.264-1.122 1.609-1.609.581-.822.989-1.845 1.156-2.9.065-.412.065-1.468 0-1.88-.167-1.055-.576-2.08-1.156-2.899-.33-.466-1.036-1.188-1.479-1.514-1.292-.948-2.82-1.389-4.45-1.284m.88 3.4c.39.177.578.468.578.897 0 .332-.088.529-.333.751-.484.437-1.221.289-1.538-.31-.118-.225-.118-.658.001-.881.178-.335.515-.538.892-.538.136 0 .289.031.4.081m-.084 2.657c.175.103.28.246.326.443.02.086.037.603.037 1.147l.001.99h1v1.32h-3.36V14h1v-1.32h-.64v-1.367l.75.013c.663.012.766.023.886.094"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const OptionSelectionTest = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
d="M6.875 4.062c-1.307.237-2.342 1.175-2.742 2.486-.095.315-.107.415-.107.952 0 .537.012.637.107.952.368 1.204 1.211 2.047 2.415 2.415.315.095.415.107.952.107.537 0 .637-.012.952-.107 1.204-.368 2.047-1.211 2.415-2.415.095-.315.107-.415.107-.952 0-.537-.012-.637-.107-.952a3.45 3.45 0 0 0-.999-1.612 3.492 3.492 0 0 0-2.993-.874m9.15-.017c-1.273.164-2.408 1.105-2.821 2.337a3.452 3.452 0 0 0 .837 3.577c1.199 1.198 3.043 1.36 4.473.393.286-.193.768-.709.949-1.015.362-.613.507-1.138.507-1.837 0-.976-.328-1.775-1.011-2.458a3.45 3.45 0 0 0-2.038-1 2.778 2.778 0 0 0-.896.003M8.11 6.139c.305.139.615.45.756.757.096.209.112.295.112.604.001.31-.015.393-.111.6a1.687 1.687 0 0 1-.763.767c-.21.098-.293.113-.604.113-.31 0-.393-.015-.6-.112a1.682 1.682 0 0 1-.766-.764c-.096-.209-.112-.295-.112-.604-.001-.31.015-.393.111-.6a1.618 1.618 0 0 1 1.017-.859c.257-.065.702-.019.96.098m9.033.001c.301.147.57.416.719.721.107.216.118.277.118.639s-.011.423-.118.639a1.872 1.872 0 0 1-.3.423 1.872 1.872 0 0 1-.423.3c-.216.107-.277.118-.639.118s-.423-.011-.639-.118a1.507 1.507 0 0 1-.592-2.222c.173-.247.501-.495.77-.581.116-.037.304-.054.524-.047.283.01.385.032.58.128M7.025 13.045c-1.273.164-2.408 1.105-2.821 2.337a3.452 3.452 0 0 0 .837 3.577c1.199 1.198 3.043 1.36 4.473.393.286-.193.768-.709.949-1.015.362-.613.507-1.138.507-1.837 0-.976-.328-1.775-1.011-2.458a3.45 3.45 0 0 0-2.038-1 2.778 2.778 0 0 0-.896.003m9.204.01a.95.95 0 0 0-.599.504l-.11.215v1.746h-1.746l-.217.11a.971.971 0 0 0 0 1.74l.217.11h1.746v1.746l.11.217a.971.971 0 0 0 1.74 0l.11-.217V17.48h1.746l.217-.11a.971.971 0 0 0 0-1.74l-.217-.11H17.48v-.87c-.001-.829-.005-.88-.095-1.072a.978.978 0 0 0-1.156-.523M8.143 15.14c.301.147.57.416.719.721.107.216.118.277.118.639s-.011.423-.118.639a1.611 1.611 0 0 1-.723.723c-.216.107-.277.118-.639.118s-.423-.011-.639-.118a1.507 1.507 0 0 1-.592-2.222c.173-.247.501-.495.77-.581.116-.037.304-.054.524-.047.283.01.385.032.58.128"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const SimpleAnswertTest = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
d="M6.991 3.045c-1.317.079-2.094.4-2.851 1.175-.537.55-.864 1.164-1 1.874C3.02 6.723 3 7.537 3 12c0 5.277.019 5.687.294 6.479.318.912 1.312 1.91 2.213 2.221.817.282 1.205.3 6.493.3s5.676-.018 6.493-.3c.895-.309 1.898-1.312 2.207-2.207.282-.817.3-1.205.3-6.493s-.018-5.676-.3-6.493c-.207-.601-.841-1.401-1.415-1.786-.662-.444-1.247-.61-2.385-.679-.806-.049-9.094-.046-9.909.003m9.81 1.995c.341.022.723.066.85.099.553.144 1.065.656 1.209 1.209.114.437.14 1.474.14 5.652s-.026 5.215-.14 5.652c-.144.553-.686 1.093-1.229 1.223-.435.105-1.308.124-5.631.124s-5.196-.019-5.631-.124c-.543-.13-1.085-.67-1.229-1.223C5.026 17.215 5 16.178 5 12s.026-5.215.14-5.652c.103-.397.416-.8.811-1.044.239-.148.575-.225 1.142-.261.73-.047 8.984-.049 9.708-.003M7.78 7.037c-.75.185-1.017 1.115-.475 1.658.063.062.186.152.274.199l.161.086h8.52l.161-.086c.366-.196.553-.498.553-.894s-.187-.698-.553-.894l-.161-.086-4.18-.006c-2.299-.004-4.234.007-4.3.023m0 4c-.751.188-1.017 1.115-.475 1.658.063.062.186.152.274.199.159.085.185.086 2.421.086 2.236 0 2.262-.001 2.421-.086.366-.196.553-.498.553-.894s-.187-.698-.553-.894c-.159-.085-.193-.086-2.341-.093-1.199-.003-2.234.007-2.3.024"
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
package/index.ts
CHANGED
|
@@ -137,6 +137,12 @@ import { Pen } from './icons/Pen';
|
|
|
137
137
|
import { Undo } from './icons/Undo';
|
|
138
138
|
import { Redo } from './icons/Redo';
|
|
139
139
|
import { Pin } from './icons/Pin';
|
|
140
|
+
import { Hint } from './icons/Hint';
|
|
141
|
+
import { DoubleBottomArrows } from './icons/DoubleBottomArrows';
|
|
142
|
+
import { DoubleUpArrows } from './icons/DoubleUpArrows';
|
|
143
|
+
import { SimpleAnswertTest } from './icons/SimpleAnswertTest';
|
|
144
|
+
import { DetailedAnswerTest } from './icons/DetailedAnswerTest';
|
|
145
|
+
import { OptionSelectionTest } from './icons/OptionSelectionTest';
|
|
140
146
|
|
|
141
147
|
import { icons } from './config';
|
|
142
148
|
|
|
@@ -280,6 +286,12 @@ export {
|
|
|
280
286
|
Undo,
|
|
281
287
|
Redo,
|
|
282
288
|
Pin,
|
|
289
|
+
Hint,
|
|
290
|
+
DoubleBottomArrows,
|
|
291
|
+
DoubleUpArrows,
|
|
292
|
+
SimpleAnswertTest,
|
|
293
|
+
DetailedAnswerTest,
|
|
294
|
+
OptionSelectionTest,
|
|
283
295
|
icons,
|
|
284
296
|
};
|
|
285
297
|
|