@scottish-government/designsystem-react 0.5.1 → 0.6.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/.svgrrc +2 -1
- package/.svgrrc_documents +15 -0
- package/@types/common/FileIcon.d.ts +7 -0
- package/@types/components/FileDownload.d.ts +11 -0
- package/@types/sgds.d.ts +1 -0
- package/dist/common/file-icon.jsx +51 -0
- package/dist/common/icon.jsx +1 -1
- package/dist/components/file-download/file-download.jsx +50 -0
- package/dist/images/documents/audio.jsx +47 -0
- package/dist/images/documents/csv.jsx +57 -0
- package/dist/images/documents/excel.jsx +57 -0
- package/dist/images/documents/file.jsx +48 -0
- package/dist/images/documents/generic.jsx +47 -0
- package/dist/images/documents/geodata.jsx +44 -0
- package/dist/images/documents/ical.jsx +48 -0
- package/dist/images/documents/ico.jsx +48 -0
- package/dist/images/documents/image.jsx +43 -0
- package/dist/images/documents/index.js +50 -0
- package/dist/images/documents/odf.jsx +46 -0
- package/dist/images/documents/odg.jsx +46 -0
- package/dist/images/documents/odp.jsx +45 -0
- package/dist/images/documents/ods.jsx +55 -0
- package/dist/images/documents/odt.jsx +46 -0
- package/dist/images/documents/pdf.jsx +48 -0
- package/dist/images/documents/ppt.jsx +47 -0
- package/dist/images/documents/rtf.jsx +48 -0
- package/dist/images/documents/text.jsx +48 -0
- package/dist/images/documents/video.jsx +47 -0
- package/dist/images/documents/word.jsx +48 -0
- package/dist/images/documents/xml.jsx +48 -0
- package/dist/images/documents/zip.jsx +48 -0
- package/dist/images/icons/arrow_upward.jsx +41 -0
- package/dist/images/icons/calendar_today.jsx +41 -0
- package/dist/images/icons/cancel.jsx +40 -0
- package/dist/images/icons/check_circle.jsx +41 -0
- package/dist/images/icons/chevron_left.jsx +41 -0
- package/dist/images/icons/chevron_right.jsx +41 -0
- package/dist/images/icons/close.jsx +41 -0
- package/dist/images/icons/description.jsx +41 -0
- package/dist/images/icons/double_chevron_left.jsx +40 -0
- package/dist/images/icons/double_chevron_right.jsx +40 -0
- package/dist/images/icons/error.jsx +41 -0
- package/dist/images/icons/expand_less.jsx +41 -0
- package/dist/images/icons/expand_more.jsx +41 -0
- package/dist/images/icons/index.js +40 -0
- package/dist/images/icons/list.jsx +44 -0
- package/dist/images/icons/menu.jsx +41 -0
- package/dist/images/icons/priority_high.jsx +42 -0
- package/dist/images/icons/search.jsx +41 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/src/common/file-icon.test.tsx +50 -0
- package/src/common/file-icon.tsx +25 -0
- package/src/common/icon.tsx +1 -1
- package/src/components/file-download/file-download.test.tsx +167 -0
- package/src/components/file-download/file-download.tsx +67 -0
- package/src/images/documents/audio.tsx +34 -0
- package/src/images/documents/csv.tsx +39 -0
- package/src/images/documents/excel.tsx +39 -0
- package/src/images/documents/file.tsx +30 -0
- package/src/images/documents/generic.tsx +26 -0
- package/src/images/documents/geodata.tsx +29 -0
- package/src/images/documents/ical.tsx +30 -0
- package/src/images/documents/ico.tsx +30 -0
- package/src/images/documents/image.tsx +25 -0
- package/src/images/documents/index.ts +22 -0
- package/src/images/documents/odf.tsx +28 -0
- package/src/images/documents/odg.tsx +28 -0
- package/src/images/documents/odp.tsx +33 -0
- package/src/images/documents/ods.tsx +37 -0
- package/src/images/documents/odt.tsx +28 -0
- package/src/images/documents/pdf.tsx +30 -0
- package/src/images/documents/ppt.tsx +28 -0
- package/src/images/documents/rtf.tsx +30 -0
- package/src/images/documents/text.tsx +30 -0
- package/src/images/documents/video.tsx +34 -0
- package/src/images/documents/word.tsx +30 -0
- package/src/images/documents/xml.tsx +30 -0
- package/src/images/documents/zip.tsx +30 -0
- package/src/images/icons/index.ts +17 -0
- package/vite.config.ts +1 -1
- package/src/icons/index.ts +0 -17
- /package/src/{icons/ArrowUpward.tsx → images/icons/arrow_upward.tsx} +0 -0
- /package/src/{icons/CalendarToday.tsx → images/icons/calendar_today.tsx} +0 -0
- /package/src/{icons/Cancel.tsx → images/icons/cancel.tsx} +0 -0
- /package/src/{icons/CheckCircle.tsx → images/icons/check_circle.tsx} +0 -0
- /package/src/{icons/ChevronLeft.tsx → images/icons/chevron_left.tsx} +0 -0
- /package/src/{icons/ChevronRight.tsx → images/icons/chevron_right.tsx} +0 -0
- /package/src/{icons/Close.tsx → images/icons/close.tsx} +0 -0
- /package/src/{icons/Description.tsx → images/icons/description.tsx} +0 -0
- /package/src/{icons/DoubleChevronLeft.tsx → images/icons/double_chevron_left.tsx} +0 -0
- /package/src/{icons/DoubleChevronRight.tsx → images/icons/double_chevron_right.tsx} +0 -0
- /package/src/{icons/Error.tsx → images/icons/error.tsx} +0 -0
- /package/src/{icons/ExpandLess.tsx → images/icons/expand_less.tsx} +0 -0
- /package/src/{icons/ExpandMore.tsx → images/icons/expand_more.tsx} +0 -0
- /package/src/{icons/List.tsx → images/icons/list.tsx} +0 -0
- /package/src/{icons/Menu.tsx → images/icons/menu.tsx} +0 -0
- /package/src/{icons/PriorityHigh.tsx → images/icons/priority_high.tsx} +0 -0
- /package/src/{icons/Search.tsx → images/icons/search.tsx} +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgOdg = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
viewBox="0 0 80 120"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M59.5859 0.999756L79 20.4138V119H1V0.999756H59.5859Z"
|
|
13
|
+
fill="white"
|
|
14
|
+
stroke="#5E5E5E"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<path d="M80 19.9998L60 -0.000244141V19.9998H80Z" fill="#5E5E5E" />
|
|
18
|
+
<rect x={10} y={59.9998} width={59.9997} height={5} fill="#5E5E5E" />
|
|
19
|
+
<rect x={10} y={69.9998} width={59.9997} height={5} fill="#5E5E5E" />
|
|
20
|
+
<rect x={10} y={79.9998} width={30} height={5} fill="#5E5E5E" />
|
|
21
|
+
<rect x={10} y={27.9998} width={60} height={27} fill="#5E5E5E" />
|
|
22
|
+
<path
|
|
23
|
+
d="M33.6426 41.4885V42.0781C33.6426 43.0238 33.5144 43.8726 33.2581 44.6245C33.0017 45.3765 32.64 46.0173 32.1729 46.5471C31.7057 47.0712 31.1475 47.4728 30.498 47.752C29.8543 48.0311 29.1394 48.1707 28.3533 48.1707C27.5728 48.1707 26.8579 48.0311 26.2085 47.752C25.5648 47.4728 25.0065 47.0712 24.5337 46.5471C24.0609 46.0173 23.6934 45.3765 23.4314 44.6245C23.175 43.8726 23.0469 43.0238 23.0469 42.0781V41.4885C23.0469 40.5372 23.175 39.6884 23.4314 38.9421C23.6877 38.1902 24.0495 37.5493 24.5166 37.0195C24.9894 36.4897 25.5477 36.0853 26.1914 35.8062C26.8408 35.527 27.5557 35.3875 28.3362 35.3875C29.1223 35.3875 29.8372 35.527 30.481 35.8062C31.1304 36.0853 31.6886 36.4897 32.1558 37.0195C32.6286 37.5493 32.9932 38.1902 33.2495 38.9421C33.5116 39.6884 33.6426 40.5372 33.6426 41.4885ZM31.0535 42.0781V41.4714C31.0535 40.8106 30.9937 40.2296 30.874 39.7283C30.7544 39.227 30.5778 38.8054 30.3442 38.4636C30.1107 38.1218 29.8258 37.8655 29.4897 37.6946C29.1536 37.518 28.7691 37.4297 28.3362 37.4297C27.9032 37.4297 27.5187 37.518 27.1826 37.6946C26.8522 37.8655 26.5702 38.1218 26.3367 38.4636C26.1088 38.8054 25.9351 39.227 25.8154 39.7283C25.6958 40.2296 25.636 40.8106 25.636 41.4714V42.0781C25.636 42.7332 25.6958 43.3143 25.8154 43.8213C25.9351 44.3226 26.1117 44.747 26.3452 45.0945C26.5788 45.4363 26.8636 45.6955 27.1997 45.8721C27.5358 46.0487 27.9203 46.137 28.3533 46.137C28.7862 46.137 29.1707 46.0487 29.5068 45.8721C29.8429 45.6955 30.1249 45.4363 30.3528 45.0945C30.5806 44.747 30.7544 44.3226 30.874 43.8213C30.9937 43.3143 31.0535 42.7332 31.0535 42.0781ZM39.3079 47.9998H36.5991L36.6162 46.0002H39.3079C39.9801 46.0002 40.5469 45.8493 41.0083 45.5474C41.4697 45.2397 41.8172 44.7926 42.0508 44.2058C42.29 43.6191 42.4097 42.9098 42.4097 42.0781V41.4714C42.4097 40.8334 42.3413 40.2723 42.2046 39.7881C42.0736 39.3039 41.877 38.8966 41.615 38.5662C41.3529 38.2358 41.0311 37.988 40.6494 37.8228C40.2677 37.6519 39.8291 37.5664 39.3335 37.5664H36.5479V35.5583H39.3335C40.1652 35.5583 40.9257 35.7008 41.615 35.9856C42.31 36.2647 42.911 36.6663 43.418 37.1904C43.925 37.7145 44.3152 38.3411 44.5886 39.0703C44.8678 39.7938 45.0073 40.5999 45.0073 41.4885V42.0781C45.0073 42.9611 44.8678 43.7672 44.5886 44.4963C44.3152 45.2255 43.925 45.8521 43.418 46.3762C42.9167 46.8946 42.3157 47.2962 41.615 47.5811C40.92 47.8602 40.151 47.9998 39.3079 47.9998ZM38.0518 35.5583V47.9998H35.4883V35.5583H38.0518ZM56.731 41.4971V46.4275C56.5373 46.6611 56.2382 46.9146 55.8337 47.188C55.4293 47.4557 54.908 47.6864 54.27 47.8801C53.632 48.0738 52.8601 48.1707 51.9543 48.1707C51.1511 48.1707 50.4191 48.0396 49.7583 47.7776C49.0975 47.5098 48.5278 47.1196 48.0493 46.6069C47.5765 46.0942 47.2119 45.4676 46.9556 44.7271C46.6992 43.9808 46.571 43.1292 46.571 42.1721V41.3945C46.571 40.4375 46.6935 39.5859 46.9385 38.8396C47.1891 38.0933 47.5452 37.4639 48.0066 36.9512C48.468 36.4385 49.0177 36.0483 49.6558 35.7805C50.2938 35.5128 51.003 35.3789 51.7834 35.3789C52.8658 35.3789 53.7545 35.5555 54.4495 35.9087C55.1444 36.2562 55.6742 36.7404 56.0388 37.3613C56.4091 37.9766 56.637 38.6829 56.7224 39.4805H54.2358C54.1732 39.0589 54.0535 38.6915 53.877 38.3782C53.7004 38.0649 53.4469 37.8199 53.1165 37.6433C52.7917 37.4667 52.3702 37.3784 51.8518 37.3784C51.4246 37.3784 51.0429 37.4667 50.7068 37.6433C50.3764 37.8142 50.0972 38.0677 49.8694 38.4038C49.6415 38.7399 49.4678 39.1558 49.3481 39.6514C49.2285 40.147 49.1687 40.7223 49.1687 41.3774V42.1721C49.1687 42.8215 49.2314 43.3969 49.3567 43.8982C49.482 44.3938 49.6672 44.8125 49.9121 45.1543C50.1628 45.4904 50.4704 45.7439 50.835 45.9148C51.1995 46.0857 51.6239 46.1711 52.1082 46.1711C52.5126 46.1711 52.8487 46.137 53.1165 46.0686C53.3899 46.0002 53.6092 45.9176 53.7744 45.8208C53.9453 45.7183 54.0763 45.6214 54.1675 45.5303V43.3257H51.8262V41.4971H56.731Z"
|
|
24
|
+
fill="white"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgOdg;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgOdp = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
viewBox="0 0 80 120"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M59.5859 1L79 20.4141V119H1V1H59.5859Z"
|
|
13
|
+
fill="white"
|
|
14
|
+
stroke="#CB4E0B"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<path d="M80 20L60 0V20H80Z" fill="#CB4E0B" />
|
|
18
|
+
<rect x={9.99951} y={28} width={60} height={27} fill="#CB4E0B" />
|
|
19
|
+
<path
|
|
20
|
+
d="M33.9668 41.4888V42.0784C33.9668 43.024 33.8386 43.8728 33.5823 44.6248C33.3259 45.3767 32.9642 46.0176 32.4971 46.5474C32.0299 47.0715 31.4717 47.4731 30.8223 47.7522C30.1785 48.0313 29.4636 48.1709 28.6775 48.1709C27.8971 48.1709 27.1821 48.0313 26.5327 47.7522C25.889 47.4731 25.3307 47.0715 24.8579 46.5474C24.3851 46.0176 24.0177 45.3767 23.7556 44.6248C23.4993 43.8728 23.3711 43.024 23.3711 42.0784V41.4888C23.3711 40.5374 23.4993 39.6886 23.7556 38.9424C24.012 38.1904 24.3737 37.5496 24.8408 37.0198C25.3136 36.49 25.8719 36.0855 26.5156 35.8064C27.165 35.5273 27.88 35.3877 28.6604 35.3877C29.4465 35.3877 30.1615 35.5273 30.8052 35.8064C31.4546 36.0855 32.0129 36.49 32.48 37.0198C32.9528 37.5496 33.3174 38.1904 33.5737 38.9424C33.8358 39.6886 33.9668 40.5374 33.9668 41.4888ZM31.3777 42.0784V41.4717C31.3777 40.8109 31.3179 40.2298 31.1982 39.7285C31.0786 39.2272 30.902 38.8057 30.6685 38.4639C30.4349 38.1221 30.1501 37.8657 29.814 37.6948C29.4779 37.5182 29.0933 37.4299 28.6604 37.4299C28.2275 37.4299 27.8429 37.5182 27.5068 37.6948C27.1764 37.8657 26.8944 38.1221 26.6609 38.4639C26.433 38.8057 26.2593 39.2272 26.1396 39.7285C26.02 40.2298 25.9602 40.8109 25.9602 41.4717V42.0784C25.9602 42.7335 26.02 43.3145 26.1396 43.8215C26.2593 44.3228 26.4359 44.7472 26.6694 45.0947C26.903 45.4365 27.1878 45.6957 27.5239 45.8723C27.86 46.0489 28.2445 46.1372 28.6775 46.1372C29.1104 46.1372 29.495 46.0489 29.8311 45.8723C30.1672 45.6957 30.4491 45.4365 30.677 45.0947C30.9049 44.7472 31.0786 44.3228 31.1982 43.8215C31.3179 43.3145 31.3777 42.7335 31.3777 42.0784ZM39.6321 48H36.9233L36.9404 46.0005H39.6321C40.3043 46.0005 40.8711 45.8495 41.3325 45.5476C41.7939 45.24 42.1414 44.7928 42.375 44.2061C42.6143 43.6193 42.7339 42.9101 42.7339 42.0784V41.4717C42.7339 40.8337 42.6655 40.2725 42.5288 39.7883C42.3978 39.3041 42.2013 38.8968 41.9392 38.5664C41.6772 38.236 41.3553 37.9882 40.9736 37.823C40.592 37.6521 40.1533 37.5667 39.6577 37.5667H36.8721V35.5586H39.6577C40.4894 35.5586 41.2499 35.701 41.9392 35.9858C42.6342 36.265 43.2352 36.6666 43.7422 37.1907C44.2492 37.7148 44.6394 38.3414 44.9128 39.0706C45.192 39.794 45.3315 40.6001 45.3315 41.4888V42.0784C45.3315 42.9613 45.192 43.7674 44.9128 44.4966C44.6394 45.2257 44.2492 45.8524 43.7422 46.3765C43.2409 46.8949 42.6399 47.2965 41.9392 47.5813C41.2442 47.8604 40.4752 48 39.6321 48ZM38.376 35.5586V48H35.8125V35.5586H38.376ZM52.0393 43.5652H48.8691V41.5657H52.0393C52.5292 41.5657 52.928 41.4859 53.2356 41.3264C53.5432 41.1612 53.7682 40.9333 53.9106 40.6428C54.0531 40.3523 54.1243 40.0247 54.1243 39.6602C54.1243 39.2899 54.0531 38.9452 53.9106 38.6262C53.7682 38.3072 53.5432 38.0509 53.2356 37.8572C52.928 37.6635 52.5292 37.5667 52.0393 37.5667H49.7578V48H47.1943V35.5586H52.0393C53.0134 35.5586 53.848 35.7352 54.543 36.0884C55.2437 36.4359 55.7791 36.9172 56.1494 37.5325C56.5197 38.1477 56.7048 38.8512 56.7048 39.6431C56.7048 40.4463 56.5197 41.1413 56.1494 41.728C55.7791 42.3148 55.2437 42.7677 54.543 43.0867C53.848 43.4057 53.0134 43.5652 52.0393 43.5652Z"
|
|
21
|
+
fill="white"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
d="M58.0328 83.4837C58.0328 87.2448 56.9175 90.9214 54.828 94.0486C52.7384 97.1759 49.7685 99.6132 46.2937 101.053C42.8189 102.492 38.9953 102.868 35.3065 102.135C31.6177 101.401 28.2293 99.5898 25.5698 96.9303C22.9103 94.2708 21.0992 90.8824 20.3654 87.1936C19.6317 83.5048 20.0082 79.6812 21.4475 76.2064C22.8869 72.7316 25.3242 69.7617 28.4515 67.6721C31.5787 65.5826 35.2553 64.4673 39.0164 64.4673V83.4837H58.0328Z"
|
|
25
|
+
fill="#CB4E0B"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M40.9839 62.5C43.4812 62.5 45.954 62.9918 48.2611 63.9475C50.5683 64.9032 52.6647 66.3039 54.4305 68.0697C56.1963 69.8356 57.5971 71.9319 58.5527 74.2391C59.5084 76.5463 60.0003 79.0191 60.0003 81.5164L40.9839 81.5164L40.9839 62.5Z"
|
|
29
|
+
fill="#CB4E0B"
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
export default SvgOdp;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgOds = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
viewBox="0 0 80 120"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M59.5859 1L79 20.4141V119H1V1H59.5859Z"
|
|
13
|
+
fill="white"
|
|
14
|
+
stroke="#1A7032"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<path d="M80 20L60 0V20H80Z" fill="#1A7032" />
|
|
18
|
+
<rect x={10} y={65} width={12.5} height={5} fill="#1A7032" />
|
|
19
|
+
<rect x={25.833} y={64.9999} width={12.5} height={5} fill="#1A7032" />
|
|
20
|
+
<rect x={41.667} y={64.9999} width={12.5} height={5} fill="#1A7032" />
|
|
21
|
+
<rect x={57.5} y={64.9999} width={12.5} height={5} fill="#1A7032" />
|
|
22
|
+
<rect x={10} y={74.9999} width={12.5} height={5} fill="#1A7032" />
|
|
23
|
+
<rect x={25.833} y={74.9999} width={12.5} height={5} fill="#1A7032" />
|
|
24
|
+
<rect x={41.667} y={74.9999} width={12.5} height={5} fill="#1A7032" />
|
|
25
|
+
<rect x={57.5} y={74.9999} width={12.5} height={5} fill="#1A7032" />
|
|
26
|
+
<rect x={10} y={84.9999} width={12.5} height={5} fill="#1A7032" />
|
|
27
|
+
<rect x={25.833} y={84.9999} width={12.5} height={5} fill="#1A7032" />
|
|
28
|
+
<rect x={41.667} y={84.9999} width={12.5} height={5} fill="#1A7032" />
|
|
29
|
+
<rect x={57.5} y={84.9999} width={12.5} height={5} fill="#1A7032" />
|
|
30
|
+
<rect x={10} y={28} width={60} height={27} fill="#1A7032" />
|
|
31
|
+
<path
|
|
32
|
+
d="M34.2151 41.4888V42.0784C34.2151 43.024 34.0869 43.8728 33.8306 44.6248C33.5742 45.3767 33.2125 46.0176 32.7454 46.5474C32.2782 47.0715 31.72 47.4731 31.0706 47.7522C30.4268 48.0313 29.7119 48.1709 28.9258 48.1709C28.1453 48.1709 27.4304 48.0313 26.781 47.7522C26.1373 47.4731 25.579 47.0715 25.1062 46.5474C24.6334 46.0176 24.266 45.3767 24.0039 44.6248C23.7476 43.8728 23.6194 43.024 23.6194 42.0784V41.4888C23.6194 40.5374 23.7476 39.6886 24.0039 38.9424C24.2603 38.1904 24.622 37.5496 25.0891 37.0198C25.5619 36.49 26.1202 36.0855 26.7639 35.8064C27.4133 35.5273 28.1283 35.3877 28.9087 35.3877C29.6948 35.3877 30.4097 35.5273 31.0535 35.8064C31.7029 36.0855 32.2611 36.49 32.7283 37.0198C33.2011 37.5496 33.5657 38.1904 33.822 38.9424C34.0841 39.6886 34.2151 40.5374 34.2151 41.4888ZM31.626 42.0784V41.4717C31.626 40.8109 31.5662 40.2298 31.4465 39.7285C31.3269 39.2272 31.1503 38.8057 30.9167 38.4639C30.6832 38.1221 30.3984 37.8657 30.0623 37.6948C29.7262 37.5182 29.3416 37.4299 28.9087 37.4299C28.4757 37.4299 28.0912 37.5182 27.7551 37.6948C27.4247 37.8657 27.1427 38.1221 26.9092 38.4639C26.6813 38.8057 26.5076 39.2272 26.3879 39.7285C26.2683 40.2298 26.2085 40.8109 26.2085 41.4717V42.0784C26.2085 42.7335 26.2683 43.3145 26.3879 43.8215C26.5076 44.3228 26.6842 44.7472 26.9177 45.0947C27.1513 45.4365 27.4361 45.6957 27.7722 45.8723C28.1083 46.0489 28.4928 46.1372 28.9258 46.1372C29.3587 46.1372 29.7432 46.0489 30.0793 45.8723C30.4154 45.6957 30.6974 45.4365 30.9253 45.0947C31.1532 44.7472 31.3269 44.3228 31.4465 43.8215C31.5662 43.3145 31.626 42.7335 31.626 42.0784ZM39.8804 48H37.1716L37.1887 46.0005H39.8804C40.5526 46.0005 41.1194 45.8495 41.5808 45.5476C42.0422 45.24 42.3897 44.7928 42.6233 44.2061C42.8625 43.6193 42.9822 42.9101 42.9822 42.0784V41.4717C42.9822 40.8337 42.9138 40.2725 42.7771 39.7883C42.6461 39.3041 42.4495 38.8968 42.1875 38.5664C41.9255 38.236 41.6036 37.9882 41.2219 37.823C40.8403 37.6521 40.4016 37.5667 39.906 37.5667H37.1204V35.5586H39.906C40.7377 35.5586 41.4982 35.701 42.1875 35.9858C42.8825 36.265 43.4835 36.6666 43.9905 37.1907C44.4975 37.7148 44.8877 38.3414 45.1611 39.0706C45.4403 39.794 45.5798 40.6001 45.5798 41.4888V42.0784C45.5798 42.9613 45.4403 43.7674 45.1611 44.4966C44.8877 45.2257 44.4975 45.8524 43.9905 46.3765C43.4892 46.8949 42.8882 47.2965 42.1875 47.5813C41.4925 47.8604 40.7235 48 39.8804 48ZM38.6243 35.5586V48H36.0608V35.5586H38.6243ZM53.9197 44.7444C53.9197 44.5222 53.8855 44.3228 53.8171 44.1462C53.7545 43.9639 53.6348 43.7987 53.4583 43.6506C53.2817 43.4968 53.0339 43.3459 52.7148 43.1978C52.3958 43.0496 51.9828 42.8958 51.4758 42.7363C50.9119 42.554 50.3764 42.349 49.8694 42.1211C49.3681 41.8932 48.9237 41.6283 48.5364 41.3264C48.1547 41.0188 47.8528 40.6628 47.6306 40.2583C47.4141 39.8538 47.3059 39.3839 47.3059 38.8484C47.3059 38.33 47.4198 37.86 47.6477 37.4385C47.8756 37.0112 48.1946 36.6466 48.6047 36.3447C49.0149 36.0371 49.4991 35.8007 50.0574 35.6355C50.6213 35.4703 51.2394 35.3877 51.9116 35.3877C52.8288 35.3877 53.6292 35.5529 54.3127 35.8833C54.9963 36.2137 55.5261 36.6666 55.9021 37.2419C56.2838 37.8173 56.4746 38.4753 56.4746 39.2158H53.9282C53.9282 38.8512 53.8513 38.5322 53.6975 38.2588C53.5494 37.9797 53.3215 37.7603 53.0139 37.6008C52.712 37.4413 52.3303 37.3616 51.8689 37.3616C51.4246 37.3616 51.0543 37.4299 50.7581 37.5667C50.4618 37.6977 50.2397 37.8771 50.0916 38.105C49.9434 38.3271 49.8694 38.5778 49.8694 38.8569C49.8694 39.0677 49.9207 39.2585 50.0232 39.4294C50.1314 39.6003 50.2909 39.7598 50.5017 39.908C50.7125 40.0561 50.9717 40.1956 51.2793 40.3267C51.5869 40.4577 51.943 40.5859 52.3474 40.7112C53.0253 40.9163 53.6206 41.147 54.1333 41.4033C54.6517 41.6597 55.0846 41.9473 55.4321 42.2664C55.7796 42.5854 56.0417 42.9471 56.2183 43.3516C56.3949 43.756 56.4832 44.2146 56.4832 44.7273C56.4832 45.2685 56.3778 45.7527 56.167 46.1799C55.9562 46.6072 55.6514 46.9689 55.2527 47.2651C54.8539 47.5614 54.3783 47.7864 53.8257 47.9402C53.2731 48.094 52.655 48.1709 51.9714 48.1709C51.3562 48.1709 50.7495 48.0911 50.1514 47.9316C49.5532 47.7664 49.0092 47.5186 48.5193 47.1882C48.0351 46.8578 47.6477 46.4363 47.3572 45.9236C47.0667 45.4109 46.9214 44.8042 46.9214 44.1035H49.4934C49.4934 44.4909 49.5532 44.8184 49.6729 45.0862C49.7925 45.3539 49.9605 45.5704 50.177 45.7356C50.3992 45.9008 50.6612 46.0204 50.9631 46.0945C51.2708 46.1685 51.6069 46.2056 51.9714 46.2056C52.4158 46.2056 52.7804 46.1429 53.0652 46.0176C53.3557 45.8923 53.5693 45.7185 53.7061 45.4963C53.8485 45.2742 53.9197 45.0235 53.9197 44.7444Z"
|
|
33
|
+
fill="white"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
export default SvgOds;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgOdt = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
viewBox="0 0 80 120"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M59.5859 1L79 20.4141V119H1V1H59.5859Z"
|
|
13
|
+
fill="white"
|
|
14
|
+
stroke="#0065BD"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<path d="M80 20L60 0V20H80Z" fill="#0065BD" />
|
|
18
|
+
<rect x={10} y={60} width={59.9997} height={5} fill="#0065BD" />
|
|
19
|
+
<rect x={10} y={70} width={59.9997} height={5} fill="#0065BD" />
|
|
20
|
+
<rect x={10} y={80} width={30} height={5} fill="#0065BD" />
|
|
21
|
+
<rect x={10} y={28} width={60} height={27} fill="#0065BD" />
|
|
22
|
+
<path
|
|
23
|
+
d="M34.4714 41.4888V42.0784C34.4714 43.024 34.3433 43.8728 34.0869 44.6248C33.8306 45.3767 33.4688 46.0176 33.0017 46.5474C32.5346 47.0715 31.9763 47.4731 31.3269 47.7522C30.6832 48.0313 29.9683 48.1709 29.1821 48.1709C28.4017 48.1709 27.6868 48.0313 27.0374 47.7522C26.3936 47.4731 25.8354 47.0715 25.3625 46.5474C24.8897 46.0176 24.5223 45.3767 24.2603 44.6248C24.0039 43.8728 23.8757 43.024 23.8757 42.0784V41.4888C23.8757 40.5374 24.0039 39.6886 24.2603 38.9424C24.5166 38.1904 24.8783 37.5496 25.3455 37.0198C25.8183 36.49 26.3765 36.0855 27.0203 35.8064C27.6697 35.5273 28.3846 35.3877 29.165 35.3877C29.9512 35.3877 30.6661 35.5273 31.3098 35.8064C31.9592 36.0855 32.5175 36.49 32.9846 37.0198C33.4574 37.5496 33.822 38.1904 34.0784 38.9424C34.3404 39.6886 34.4714 40.5374 34.4714 41.4888ZM31.8823 42.0784V41.4717C31.8823 40.8109 31.8225 40.2298 31.7029 39.7285C31.5833 39.2272 31.4067 38.8057 31.1731 38.4639C30.9395 38.1221 30.6547 37.8657 30.3186 37.6948C29.9825 37.5182 29.598 37.4299 29.165 37.4299C28.7321 37.4299 28.3476 37.5182 28.0115 37.6948C27.6811 37.8657 27.3991 38.1221 27.1655 38.4639C26.9377 38.8057 26.7639 39.2272 26.6443 39.7285C26.5247 40.2298 26.4648 40.8109 26.4648 41.4717V42.0784C26.4648 42.7335 26.5247 43.3145 26.6443 43.8215C26.7639 44.3228 26.9405 44.7472 27.1741 45.0947C27.4076 45.4365 27.6925 45.6957 28.0286 45.8723C28.3647 46.0489 28.7492 46.1372 29.1821 46.1372C29.6151 46.1372 29.9996 46.0489 30.3357 45.8723C30.6718 45.6957 30.9538 45.4365 31.1816 45.0947C31.4095 44.7472 31.5833 44.3228 31.7029 43.8215C31.8225 43.3145 31.8823 42.7335 31.8823 42.0784ZM40.1367 48H37.428L37.4451 46.0005H40.1367C40.8089 46.0005 41.3757 45.8495 41.8372 45.5476C42.2986 45.24 42.6461 44.7928 42.8796 44.2061C43.1189 43.6193 43.2385 42.9101 43.2385 42.0784V41.4717C43.2385 40.8337 43.1702 40.2725 43.0334 39.7883C42.9024 39.3041 42.7059 38.8968 42.4438 38.5664C42.1818 38.236 41.8599 37.9882 41.4783 37.823C41.0966 37.6521 40.658 37.5667 40.1624 37.5667H37.3767V35.5586H40.1624C40.9941 35.5586 41.7546 35.701 42.4438 35.9858C43.1388 36.265 43.7398 36.6666 44.2468 37.1907C44.7538 37.7148 45.144 38.3414 45.4175 39.0706C45.6966 39.794 45.8362 40.6001 45.8362 41.4888V42.0784C45.8362 42.9613 45.6966 43.7674 45.4175 44.4966C45.144 45.2257 44.7538 45.8524 44.2468 46.3765C43.7455 46.8949 43.1445 47.2965 42.4438 47.5813C41.7489 47.8604 40.9798 48 40.1367 48ZM38.8806 35.5586V48H36.3171V35.5586H38.8806ZM52.6807 35.5586V48H50.1257V35.5586H52.6807ZM56.5088 35.5586V37.5667H46.3574V35.5586H56.5088Z"
|
|
24
|
+
fill="white"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgOdt;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgPdf = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
fill="none"
|
|
6
|
+
viewBox="0 0 80 120"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="m1 119v-118h58.5858l19.4142 19.4142v98.5858z"
|
|
13
|
+
fill="#fff"
|
|
14
|
+
stroke="#d32205"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<g fill="#d32205">
|
|
18
|
+
<path d="m80 20-20-20v20z" />
|
|
19
|
+
<path d="m9.99951 60h59.9997v5h-59.9997z" />
|
|
20
|
+
<path d="m9.99951 70h59.9997v5h-59.9997z" />
|
|
21
|
+
<path d="m9.99951 80h30v5h-30z" />
|
|
22
|
+
<path d="m9.99951 28h60v27h-60z" />
|
|
23
|
+
</g>
|
|
24
|
+
<path
|
|
25
|
+
d="m29.8225 43.5652h-3.1702v-1.9995h3.1702c.4899 0 .8887-.0798 1.1963-.2393.3076-.1652.5326-.3931.675-.6836.1425-.2905.2137-.6181.2137-.9826 0-.3703-.0712-.715-.2137-1.034-.1424-.319-.3674-.5753-.675-.769s-.7064-.2905-1.1963-.2905h-2.2815v10.4333h-2.5635v-12.4414h4.845c.9741 0 1.8087.1766 2.5037.5298.7007.3475 1.2361.8288 1.6064 1.4441.3703.6152.5554 1.3187.5554 2.1106 0 .8032-.1851 1.4982-.5554 2.0849-.3703.5868-.9057 1.0397-1.6064 1.3587-.695.319-1.5296.4785-2.5037.4785zm10.2539 4.4348h-2.7087l.0171-1.9995h2.6916c.6722 0 1.239-.151 1.7005-.4529.4614-.3076.8089-.7548 1.0424-1.3415.2393-.5868.3589-1.296.3589-2.1277v-.6067c0-.638-.0683-1.1992-.2051-1.6834-.131-.4842-.3275-.8915-.5896-1.2219-.262-.3304-.5839-.5782-.9655-.7434-.3817-.1709-.8203-.2563-1.3159-.2563h-2.7857v-2.0081h2.7857c.8317 0 1.5922.1424 2.2814.4272.695.2792 1.296.6808 1.803 1.2049s.8972 1.1507 1.1707 1.8799c.2791.7234.4187 1.5295.4187 2.4182v.5896c0 .8829-.1396 1.689-.4187 2.4182-.2735.7291-.6637 1.3558-1.1707 1.8799-.5013.5184-1.1023.92-1.803 1.2048-.6949.2791-1.464.4187-2.3071.4187zm-1.2561-12.4414v12.4414h-2.5635v-12.4414zm11.3818 0v12.4414h-2.5634v-12.4414zm4.9561 5.3149v1.9995h-5.6567v-1.9995zm.5981-5.3149v2.0081h-6.2548v-2.0081z"
|
|
26
|
+
fill="#fff"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
export default SvgPdf;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgPpt = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
viewBox="0 0 80 120"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
role="img"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path
|
|
11
|
+
d="m1 119v-118h58.59l19.41 19.41v98.59z"
|
|
12
|
+
fill="#fff"
|
|
13
|
+
stroke="#cb4e0b"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
/>
|
|
16
|
+
<path d="m80 20-20-20v20z" fill="#cb4e0b" />
|
|
17
|
+
<path d="m10 28h60v27h-60z" fill="#cb4e0b" />
|
|
18
|
+
<path
|
|
19
|
+
d="m29.25 43.57h-3.17v-2h3.17c.49 0 .89-.08 1.2-.24.31-.17.53-.39.67-.68s.21-.62.21-.98-.07-.71-.21-1.03-.37-.58-.67-.77-.71-.29-1.2-.29h-2.28v10.43h-2.56v-12.44h4.84c.97 0 1.81.18 2.5.53.7.35 1.24.83 1.61 1.44.37.62.56 1.32.56 2.11s-.19 1.5-.56 2.08c-.37.59-.91 1.04-1.61 1.36-.69.32-1.53.48-2.5.48zm11.28 0h-3.17v-2h3.17c.49 0 .89-.08 1.2-.24.31-.17.53-.39.67-.68s.21-.62.21-.98-.07-.71-.21-1.03-.37-.58-.67-.77c-.31-.19-.71-.29-1.2-.29h-2.28v10.43h-2.56v-12.44h4.85c.97 0 1.81.18 2.5.53.7.35 1.24.83 1.61 1.44.37.62.56 1.32.56 2.11s-.19 1.5-.56 2.08c-.37.59-.91 1.04-1.61 1.36-.69.32-1.53.48-2.5.48zm12-8.01v12.44h-2.56v-12.44zm3.82 0v2.01h-10.15v-2.01z"
|
|
20
|
+
fill="#fff"
|
|
21
|
+
/>
|
|
22
|
+
<g fill="#cb4e0b">
|
|
23
|
+
<path d="m58.03 83.48c0 3.76-1.12 7.44-3.2 10.56-2.09 3.13-5.06 5.56-8.53 7s-7.3 1.81-10.99 1.08-7.08-2.55-9.74-5.2-4.47-6.05-5.2-9.74-.36-7.51 1.08-10.99c1.44-3.47 3.88-6.44 7-8.53 3.13-2.09 6.8-3.2 10.56-3.2v19.02z" />
|
|
24
|
+
<path d="m40.98 62.5c2.5 0 4.97.49 7.28 1.45s4.4 2.36 6.17 4.12c1.77 1.77 3.17 3.86 4.12 6.17.96 2.31 1.45 4.78 1.45 7.28h-19.02z" />
|
|
25
|
+
</g>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgPpt;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgRtf = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
fill="none"
|
|
6
|
+
viewBox="0 0 80 120"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="m1 119v-118h58.5858l19.4142 19.4142v98.5858z"
|
|
13
|
+
fill="#fff"
|
|
14
|
+
stroke="#0065bd"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<g fill="#0065bd">
|
|
18
|
+
<path d="m80 20-20-20v20z" />
|
|
19
|
+
<path d="m10 60h59.9997v5h-59.9997z" />
|
|
20
|
+
<path d="m10 70h59.9997v5h-59.9997z" />
|
|
21
|
+
<path d="m10 80h30v5h-30z" />
|
|
22
|
+
<path d="m10 28h60v27h-60z" />
|
|
23
|
+
</g>
|
|
24
|
+
<path
|
|
25
|
+
d="m25.5334 35.5586h4.6399c.9514 0 1.7688.1424 2.4524.4272.6893.2849 1.2191.7064 1.5894 1.2647s.5554 1.2447.5554 2.0593c0 .6665-.1139 1.239-.3418 1.7175-.2222.4729-.5383.8688-.9485 1.1878-.4044.3133-.8801.564-1.427.7519l-.8117.4273h-4.0332l-.0171-1.9995h2.9992c.4501 0 .8232-.0798 1.1194-.2393s.5184-.3817.6665-.6665c.1538-.2848.2307-.6152.2307-.9912 0-.3988-.074-.7434-.2221-1.0339-.1481-.2906-.3732-.5127-.6751-.6665s-.6807-.2307-1.1365-.2307h-2.0764v10.4333h-2.5635zm6.9556 12.4414-2.8369-5.5457 2.7087-.017 2.8711 5.4431v.1196zm9.3054-12.4414v12.4414h-2.5549v-12.4414zm3.8282 0v2.0081h-10.1514v-2.0081zm4.0246 0v12.4414h-2.5635v-12.4414zm4.9561 5.3149v1.9995h-5.6568v-1.9995zm.5981-5.3149v2.0081h-6.2549v-2.0081z"
|
|
26
|
+
fill="#fff"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
export default SvgRtf;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgText = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
fill="none"
|
|
6
|
+
viewBox="0 0 80 120"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="m1 119v-118h58.5858l19.4142 19.4142v98.5858z"
|
|
13
|
+
fill="#fff"
|
|
14
|
+
stroke="#0065bd"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<g fill="#0065bd">
|
|
18
|
+
<path d="m80 20-20-20v20z" />
|
|
19
|
+
<path d="m10 60h59.9997v5h-59.9997z" />
|
|
20
|
+
<path d="m10 70h59.9997v5h-59.9997z" />
|
|
21
|
+
<path d="m10 80h30v5h-30z" />
|
|
22
|
+
<path d="m10 28h60v27h-60z" />
|
|
23
|
+
</g>
|
|
24
|
+
<path
|
|
25
|
+
d="m29.5068 35.5586v12.4414h-2.5549v-12.4414zm3.8282 0v2.0081h-10.1514v-2.0081zm4.7595 12.6123c-.7178 0-1.3615-.1139-1.9312-.3418-.5696-.2336-1.0538-.5554-1.4526-.9656-.3931-.4101-.695-.8858-.9058-1.427-.2107-.5469-.3161-1.1279-.3161-1.7431v-.3418c0-.7007.0997-1.3416.299-1.9226.1994-.5811.4843-1.0852.8545-1.5125.376-.4272.8317-.7548 1.3672-.9827.5355-.2335 1.1393-.3503 1.8115-.3503.6552 0 1.2362.1082 1.7432.3247s.9314.5241 1.2732.9229c.3475.3987.6095.8772.7861 1.4355.1766.5526.2649 1.1678.2649 1.8457v1.0254h-7.3486v-1.6406h4.9304v-.188c0-.3418-.0626-.6466-.188-.9143-.1196-.2735-.3019-.4899-.5468-.6494-.245-.1595-.5583-.2393-.94-.2393-.3247 0-.6038.0712-.8374.2136s-.4244.3418-.5725.5982c-.1424.2563-.2507.5582-.3247.9057-.0684.3418-.1025.7178-.1025 1.128v.3418c0 .3702.0512.712.1538 1.0254.1082.3133.2592.5839.4528.8117.1994.2279.4387.4045.7178.5298.2848.1253.6067.188.9656.188.4443 0 .8573-.0855 1.239-.2564.3874-.1766.7206-.4414.9998-.7946l1.1962 1.2988c-.1936.2791-.4585.5469-.7946.8032-.3304.2564-.7292.4671-1.1963.6323-.4671.1595-.9998.2393-1.5979.2393zm7.1777-9.4165 1.5296 2.8113 1.5722-2.8113h2.6233l-2.6147 4.5203 2.7343 4.7253h-2.6318l-1.6663-2.9736-1.6662 2.9736h-2.6318l2.7343-4.7253-2.6147-4.5203zm11.4502 0v1.7432h-5.3833v-1.7432zm-4.0503-2.2815h2.461v8.7415c0 .2677.0341.4728.1025.6152.0741.1424.1823.2421.3247.2991.1424.0512.3219.0769.5383.0769.1538 0 .2906-.0057.4102-.0171.1253-.0171.2307-.0342.3162-.0513l.0085 1.8115c-.2108.0684-.4386.1225-.6836.1624s-.5155.0598-.8118.0598c-.5411 0-1.014-.0883-1.4184-.2649-.3988-.1823-.7064-.4728-.9229-.8716-.2164-.3987-.3247-.9228-.3247-1.5722z"
|
|
26
|
+
fill="#fff"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
export default SvgText;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgVideo = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
fill="none"
|
|
6
|
+
viewBox="0 0 80 120"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="m1 119v-118.000122h58.5857l19.4142 19.414222v98.5859z"
|
|
13
|
+
fill="#fff"
|
|
14
|
+
stroke="#5e5e5e"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<path d="m80 19.9998-20-19.99992207v19.99992207z" fill="#5e5e5e" />
|
|
18
|
+
<path
|
|
19
|
+
d="m1 119v-118.000122h58.5857l19.4142 19.414222v98.5859z"
|
|
20
|
+
fill="#fff"
|
|
21
|
+
stroke="#5e5e5e"
|
|
22
|
+
strokeWidth={2}
|
|
23
|
+
/>
|
|
24
|
+
<path d="m80 19.9998-20-19.99992207v19.99992207z" fill="#5e5e5e" />
|
|
25
|
+
<path d="m9.99951 27.4999h59.9999v27.5h-59.9999z" fill="#5e5e5e" />
|
|
26
|
+
<path
|
|
27
|
+
d="m22.9695 44.9022 2.9309-9.8437h2.854l-4.3323 12.4414h-1.8799zm-2.7002-9.8437 2.9223 9.8437.4444 2.5977h-1.897l-4.3066-12.4414zm12.091 3.1958v9.2456h-2.4695v-9.2456zm-2.6233-2.4097c0-.3589.1254-.6551.376-.8886.2507-.2336.5868-.3504 1.0083-.3504.4159 0 .7491.1168.9998.3504.2563.2335.3845.5297.3845.8886s-.1282.6551-.3845.8887c-.2507.2336-.5839.3503-.9998.3503-.4215 0-.7576-.1167-1.0083-.3503-.2506-.2336-.376-.5298-.376-.8887zm10.1172 9.6387v-11.1084h2.478v13.125h-2.2302zm-5.8447-2.4951v-.1795c0-.7064.0797-1.3472.2392-1.9226.1596-.581.3931-1.0795.7007-1.4953.3076-.4159.6865-.7378 1.1365-.9656.45-.2279.9627-.3418 1.5381-.3418.5412 0 1.014.1139 1.4184.3418.4102.2278.7577.5526 1.0425.9741.2905.4159.5241.9086.7007 1.4783.1766.5639.3048 1.182.3845 1.8542v.3931c-.0797.6437-.2079 1.2418-.3845 1.7944s-.4102 1.0368-.7007 1.4526c-.2848.4102-.6323.7292-1.0425.9571-.4101.2278-.8886.3418-1.4355.3418-.5754 0-1.0881-.1168-1.5381-.3504-.4443-.2335-.8203-.5611-1.1279-.9826-.3019-.4216-.5326-.9172-.6922-1.4868-.1595-.5697-.2392-1.1906-.2392-1.8628zm2.4609-.1795v.1795c0 .3816.0285.7377.0855 1.0681.0626.3304.1623.6238.299.8801.1425.2507.3247.4472.5469.5896.2279.1367.5042.2051.8289.2051.4215 0 .769-.094 1.0425-.282.2734-.1937.4813-.4586.6237-.7947.1481-.3361.2336-.7234.2564-1.1621v-1.1194c-.0171-.3589-.0684-.6807-.1538-.9655-.0798-.2906-.1994-.5384-.3589-.7434-.1538-.2051-.3475-.3646-.5811-.4786-.2278-.1139-.4984-.1709-.8117-.1709-.319 0-.5925.0741-.8203.2222-.2279.1424-.4131.339-.5555.5896-.1367.2507-.2392.5469-.3076.8887-.0626.3361-.094.7007-.094 1.0937zm12.0398 4.8621c-.7178 0-1.3615-.114-1.9311-.3418-.5697-.2336-1.0539-.5554-1.4527-.9656-.393-.4102-.695-.8858-.9057-1.427-.2108-.5469-.3162-1.1279-.3162-1.7432v-.3418c0-.7006.0997-1.3415.2991-1.9226.1993-.581.4842-1.0852.8545-1.5124.3759-.4273.8317-.7548 1.3671-.9827.5355-.2335 1.1394-.3503 1.8116-.3503.6551 0 1.2361.1082 1.7431.3247s.9314.5241 1.2732.9228c.3475.3988.6096.8773.7861 1.4356.1766.5526.2649 1.1678.2649 1.8457v1.0254h-7.3486v-1.6406h4.9304v-.188c0-.3418-.0626-.6466-.188-.9143-.1196-.2735-.3019-.4899-.5468-.6495-.245-.1595-.5583-.2392-.94-.2392-.3247 0-.6038.0712-.8374.2136-.2335.1424-.4244.3418-.5725.5982-.1424.2563-.2506.5582-.3247.9057-.0683.3418-.1025.7178-.1025 1.1279v.3418c0 .3703.0512.7121.1538 1.0254.1082.3133.2592.5839.4529.8118.1993.2279.4386.4045.7177.5298.2849.1253.6067.188.9656.188.4443 0 .8573-.0855 1.239-.2564.3874-.1766.7206-.4415.9998-.7947l1.1963 1.2989c-.1937.2791-.4586.5468-.7947.8032-.3304.2563-.7292.4671-1.1963.6323-.4671.1595-.9998.2393-1.5979.2393zm4.8022-4.6997v-.1795c0-.6779.0969-1.3016.2906-1.8713.1936-.5754.4756-1.0738.8459-1.4954.3703-.4215.826-.7491 1.3672-.9826.5412-.2393 1.1621-.3589 1.8628-.3589s1.3244.1196 1.8713.3589c.5469.2335 1.0055.5611 1.3758.9826.3759.4216.6608.92.8544 1.4954.1937.5697.2906 1.1934.2906 1.8713v.1795c0 .6722-.0969 1.296-.2906 1.8713-.1936.5697-.4785 1.0681-.8544 1.4954-.3703.4215-.8261.7491-1.3672.9826-.5412.2336-1.1621.3504-1.8628.3504s-1.3245-.1168-1.8714-.3504c-.5411-.2335-.9997-.5611-1.3757-.9826-.3703-.4273-.6523-.9257-.8459-1.4954-.1937-.5753-.2906-1.1991-.2906-1.8713zm2.461-.1795v.1795c0 .3873.0342.7491.1025 1.0852.0684.3361.1766.6323.3247.8886.1538.2507.3532.4472.5982.5896.2449.1425.544.2137.8972.2137.3418 0 .6351-.0712.8801-.2137.245-.1424.4415-.3389.5896-.5896.1481-.2563.2563-.5525.3247-.8886.0741-.3361.1111-.6979.1111-1.0852v-.1795c0-.3759-.037-.7291-.1111-1.0595-.0684-.3361-.1794-.6324-.3332-.8887-.1482-.2621-.3447-.4671-.5896-.6152-.245-.1482-.5412-.2222-.8887-.2222s-.6437.074-.8887.2222c-.2392.1481-.4358.3531-.5896.6152-.1481.2563-.2563.5526-.3247.8887-.0683.3304-.1025.6836-.1025 1.0595z"
|
|
28
|
+
fill="#fff"
|
|
29
|
+
/>
|
|
30
|
+
<circle cx={38.9619} cy={84.5314} fill="#5e5e5e" r={19.857} />
|
|
31
|
+
<path d="m51.0889 84.1856-18.6227 10.6069v-21.2138z" fill="#fff" />
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
export default SvgVideo;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgWord = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
fill="none"
|
|
6
|
+
viewBox="0 0 80 120"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="m1 119v-118h58.5858l19.4142 19.4142v98.5858z"
|
|
13
|
+
fill="#fff"
|
|
14
|
+
stroke="#0065bd"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<g fill="#0065bd">
|
|
18
|
+
<path d="m80 20-20-20v20z" />
|
|
19
|
+
<path d="m10 60h59.9997v5h-59.9997z" />
|
|
20
|
+
<path d="m10 70h59.9997v5h-59.9997z" />
|
|
21
|
+
<path d="m10 80h30v5h-30z" />
|
|
22
|
+
<path d="m10 28h60v27h-60z" />
|
|
23
|
+
</g>
|
|
24
|
+
<path
|
|
25
|
+
d="m23.6023 46.0261 2.478-10.4675h1.3843l.3162 1.7432-2.6404 10.6982h-1.4868zm-1.2732-10.4675 2.0508 10.4675-.1709 1.9739h-1.6577l-2.76-12.4414zm7.6306 10.4248 2.0252-10.4248h2.5378l-2.7515 12.4414h-1.6577zm-1.7175-10.4248 2.4951 10.5102-.0684 1.9312h-1.4868l-2.6574-10.7068.3418-1.7346zm6.853 7.9126v-.1795c0-.6778.0969-1.3016.2905-1.8713.1937-.5753.4757-1.0738.846-1.4954.3703-.4215.826-.7491 1.3672-.9826.5412-.2393 1.1621-.3589 1.8628-.3589s1.3244.1196 1.8713.3589c.5469.2335 1.0055.5611 1.3757.9826.376.4216.6608.9201.8545 1.4954.1937.5697.2906 1.1935.2906 1.8713v.1795c0 .6722-.0969 1.296-.2906 1.8713-.1937.5697-.4785 1.0681-.8545 1.4954-.3702.4215-.826.7491-1.3671.9827-.5412.2335-1.1622.3503-1.8628.3503-.7007 0-1.3245-.1168-1.8714-.3503-.5412-.2336-.9997-.5612-1.3757-.9827-.3703-.4273-.6523-.9257-.846-1.4954-.1936-.5753-.2905-1.1991-.2905-1.8713zm2.461-.1795v.1795c0 .3874.0341.7491.1025 1.0852s.1766.6323.3247.8887c.1538.2506.3532.4472.5981.5896.245.1424.5441.2136.8973.2136.3418 0 .6351-.0712.8801-.2136.2449-.1424.4415-.339.5896-.5896.1481-.2564.2563-.5526.3247-.8887.074-.3361.1111-.6978.1111-1.0852v-.1795c0-.3759-.0371-.7291-.1111-1.0595-.0684-.3361-.1794-.6323-.3333-.8887-.1481-.262-.3446-.4671-.5896-.6152-.2449-.1481-.5411-.2222-.8886-.2222s-.6437.0741-.8887.2222c-.2393.1481-.4358.3532-.5896.6152-.1481.2564-.2563.5526-.3247.8887-.0684.3304-.1025.6836-.1025 1.0595zm10.2709-2.5207v7.229h-2.4609v-9.2456h2.3157zm2.7857-2.0764-.0427 2.2815c-.1197-.0171-.2649-.0314-.4358-.0428-.1652-.017-.3162-.0256-.4529-.0256-.3475 0-.6494.0456-.9058.1367-.2506.0855-.4614.2137-.6323.3846-.1652.1709-.2905.3788-.376.6237-.0797.245-.1253.5241-.1367.8374l-.4956-.1538c0-.5981.0598-1.1478.1795-1.6491.1196-.507.2933-.9485.5212-1.3245.2336-.376.5184-.6665.8545-.8716s.7206-.3076 1.1536-.3076c.1367 0 .2762.0114.4187.0342.1424.0171.2591.0427.3503.0769zm6.4514 7.2888v-11.1084h2.478v13.125h-2.2302zm-5.8447-2.4951v-.1795c0-.7063.0797-1.3472.2392-1.9226.1595-.581.3931-1.0795.7007-1.4953.3076-.4159.6865-.7377 1.1365-.9656s.9627-.3418 1.5381-.3418c.5412 0 1.014.1139 1.4184.3418.4102.2279.7577.5526 1.0425.9741.2905.4159.5241.9086.7007 1.4783.1766.564.3048 1.182.3845 1.8542v.3931c-.0797.6437-.2079 1.2419-.3845 1.7944-.1766.5526-.4102 1.0368-.7007 1.4527-.2848.4101-.6323.7291-1.0425.957-.4101.2279-.8886.3418-1.4355.3418-.5754 0-1.0881-.1168-1.5381-.3503-.4443-.2336-.8203-.5612-1.1279-.9827-.3019-.4216-.5327-.9172-.6922-1.4868-.1595-.5697-.2392-1.1906-.2392-1.8628zm2.4609-.1795v.1795c0 .3817.0285.7377.0855 1.0681.0626.3304.1623.6238.299.8801.1425.2507.3247.4472.5469.5896.2279.1367.5042.2051.8289.2051.4215 0 .769-.094 1.0425-.282.2734-.1937.4813-.4586.6237-.7947.1481-.3361.2336-.7234.2564-1.1621v-1.1194c-.0171-.3588-.0684-.6807-.1538-.9655-.0798-.2906-.1994-.5384-.3589-.7434-.1538-.2051-.3475-.3646-.5811-.4786-.2278-.1139-.4984-.1709-.8117-.1709-.319 0-.5925.0741-.8203.2222-.2279.1424-.4131.339-.5555.5896-.1367.2507-.2392.5469-.3076.8887-.0626.3361-.094.7007-.094 1.0937z"
|
|
26
|
+
fill="#fff"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
export default SvgWord;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgXml = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
fill="none"
|
|
6
|
+
viewBox="0 0 80 120"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="m1 119v-118.000244h58.5858l19.4142 19.414244v98.586z"
|
|
13
|
+
fill="#fff"
|
|
14
|
+
stroke="#5e5e5e"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<g fill="#5e5e5e">
|
|
18
|
+
<path d="m80 19.9998-20-20.00004414v20.00004414z" />
|
|
19
|
+
<path d="m10 59.9998h59.9997v5h-59.9997z" />
|
|
20
|
+
<path d="m10 69.9998h59.9997v5h-59.9997z" />
|
|
21
|
+
<path d="m10 79.9998h30v5h-30z" />
|
|
22
|
+
<path d="m10 27.9998h60v27h-60z" />
|
|
23
|
+
</g>
|
|
24
|
+
<path
|
|
25
|
+
d="m25.2686 35.5583 2.3413 4.3409 2.3413-4.3409h2.9309l-3.6145 6.1695 3.7085 6.272h-2.9566l-2.4096-4.4263-2.4097 4.4263h-2.9736l3.717-6.272-3.623-6.1695zm10.1684 0h2.1704l3.1958 9.1346 3.1958-9.1346h2.1704l-4.4946 12.4415h-1.7432zm-1.1706 0h2.1618l.3931 8.9039v3.5376h-2.5549zm10.9118 0h2.1704v12.4415h-2.5634v-3.5376zm12.4158 10.4419v1.9996h-6.2634v-1.9996zm-5.4346-10.4419v12.4415h-2.5635v-12.4415z"
|
|
26
|
+
fill="#fff"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
export default SvgXml;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgZip = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
fill="none"
|
|
6
|
+
viewBox="0 0 80 120"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
role="img"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="m1 119v-118.000244h58.5858l19.4142 19.414244v98.586z"
|
|
13
|
+
fill="#fff"
|
|
14
|
+
stroke="#5e5e5e"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
/>
|
|
17
|
+
<g fill="#5e5e5e">
|
|
18
|
+
<path d="m80 19.9998-20-20.00004414v20.00004414z" />
|
|
19
|
+
<path d="m10 59.9998h59.9997v5h-59.9997z" />
|
|
20
|
+
<path d="m10 69.9998h59.9997v5h-59.9997z" />
|
|
21
|
+
<path d="m10 79.9998h30v5h-30z" />
|
|
22
|
+
<path d="m10 27.9998h60v27h-60z" />
|
|
23
|
+
</g>
|
|
24
|
+
<path
|
|
25
|
+
d="m37.5562 46.0002v1.9996h-8.8184v-1.9996zm-.1282-9.0148-7.5537 11.0144h-1.803v-1.4698l7.6135-10.9717h1.7432zm-.8801-1.4271v2.0081h-8.4681v-2.0081zm5.0842 3.1959v9.2456h-2.4695v-9.2456zm-2.6233-2.4097c0-.3589.1253-.6551.376-.8887.2506-.2336.5867-.3503 1.0083-.3503.4158 0 .7491.1167.9997.3503.2564.2336.3845.5298.3845.8887s-.1281.6551-.3845.8887c-.2506.2335-.5839.3503-.9997.3503-.4216 0-.7577-.1168-1.0083-.3503-.2507-.2336-.376-.5298-.376-.8887zm7.1179 4.187v11.0229h-2.4609v-12.8002h2.2815zm5.8533 2.7429v.1795c0 .6722-.0798 1.2959-.2393 1.8713-.1538.5754-.3817 1.0767-.6836 1.5039-.3019.4216-.6779.752-1.1279.9912-.4443.2336-.957.3504-1.5381.3504-.564 0-1.0539-.114-1.4697-.3418-.4159-.2279-.7662-.5469-1.051-.9571-.2792-.4158-.5042-.8972-.6751-1.4441-.1709-.5468-.3019-1.1336-.3931-1.7602v-.47c.0912-.6722.2222-1.2874.3931-1.8457.1709-.564.3959-1.051.6751-1.4612.2848-.4158.6323-.7377 1.0424-.9656.4159-.2278.903-.3417 1.4612-.3417.5868 0 1.1023.111 1.5467.3332.45.2222.826.5412 1.1279.957.3076.4159.5383.9115.6921 1.4869.1595.5753.2393 1.2133.2393 1.914zm-2.4695.1795v-.1795c0-.3931-.0342-.7548-.1025-1.0852-.0627-.3361-.1652-.6295-.3077-.8801-.1367-.2507-.319-.4444-.5468-.5811-.2222-.1424-.4928-.2136-.8118-.2136-.3361 0-.6238.0541-.863.1624-.2336.1082-.4244.2649-.5725.4699-.1482.2051-.2592.4501-.3333.7349s-.1196.6067-.1367.9656v1.1877c.0285.4216.1082.8004.2392 1.1365.1311.3304.3333.5924.6067.7861.2735.1937.6324.2905 1.0767.2905.3247 0 .5981-.0712.8203-.2136.2222-.1481.4016-.3503.5383-.6067.1424-.2563.2421-.5525.2991-.8886.0627-.3361.094-.6979.094-1.0852z"
|
|
26
|
+
fill="#fff"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
export default SvgZip;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export { default as ArrowUpward } from "./arrow_upward";
|
|
2
|
+
export { default as CalendarToday } from "./calendar_today";
|
|
3
|
+
export { default as Cancel } from "./cancel";
|
|
4
|
+
export { default as CheckCircle } from "./check_circle";
|
|
5
|
+
export { default as ChevronLeft } from "./chevron_left";
|
|
6
|
+
export { default as ChevronRight } from "./chevron_right";
|
|
7
|
+
export { default as Close } from "./close";
|
|
8
|
+
export { default as Description } from "./description";
|
|
9
|
+
export { default as DoubleChevronLeft } from "./double_chevron_left";
|
|
10
|
+
export { default as DoubleChevronRight } from "./double_chevron_right";
|
|
11
|
+
export { default as Error } from "./error";
|
|
12
|
+
export { default as ExpandLess } from "./expand_less";
|
|
13
|
+
export { default as ExpandMore } from "./expand_more";
|
|
14
|
+
export { default as List } from "./list";
|
|
15
|
+
export { default as Menu } from "./menu";
|
|
16
|
+
export { default as PriorityHigh } from "./priority_high";
|
|
17
|
+
export { default as Search } from "./search";
|
package/vite.config.ts
CHANGED
package/src/icons/index.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export { default as ArrowUpward } from "./ArrowUpward";
|
|
2
|
-
export { default as CalendarToday } from "./CalendarToday";
|
|
3
|
-
export { default as Cancel } from "./Cancel";
|
|
4
|
-
export { default as CheckCircle } from "./CheckCircle";
|
|
5
|
-
export { default as ChevronLeft } from "./ChevronLeft";
|
|
6
|
-
export { default as ChevronRight } from "./ChevronRight";
|
|
7
|
-
export { default as Close } from "./Close";
|
|
8
|
-
export { default as Description } from "./Description";
|
|
9
|
-
export { default as DoubleChevronLeft } from "./DoubleChevronLeft";
|
|
10
|
-
export { default as DoubleChevronRight } from "./DoubleChevronRight";
|
|
11
|
-
export { default as Error } from "./Error";
|
|
12
|
-
export { default as ExpandLess } from "./ExpandLess";
|
|
13
|
-
export { default as ExpandMore } from "./ExpandMore";
|
|
14
|
-
export { default as List } from "./List";
|
|
15
|
-
export { default as Menu } from "./Menu";
|
|
16
|
-
export { default as PriorityHigh } from "./PriorityHigh";
|
|
17
|
-
export { default as Search } from "./Search";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|