@xipkg/icons 0.3.0 → 0.4.3

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.
Files changed (58) hide show
  1. package/config.ts +48 -6
  2. package/index.ts +96 -12
  3. package/package.json +7 -5
  4. package/src/ArrowBottom.tsx +11 -0
  5. package/src/ArrowLeft.tsx +11 -0
  6. package/src/ArrowRight.tsx +11 -0
  7. package/src/ArrowUp.tsx +11 -0
  8. package/src/Brush.tsx +11 -0
  9. package/src/{AddCategory.tsx → CategoryAdd.tsx} +1 -1
  10. package/src/{AddChannel.tsx → ChannelAdd.tsx} +1 -1
  11. package/src/ChevronBottom.tsx +11 -0
  12. package/src/ChevronLeft.tsx +11 -0
  13. package/src/{Arrow.tsx → ChevronRight.tsx} +1 -3
  14. package/src/ChevronSmallBottom.tsx +11 -0
  15. package/src/ChevronSmallLeft.tsx +11 -0
  16. package/src/ChevronSmallRight.tsx +11 -0
  17. package/src/ChevronSmallTop.tsx +11 -0
  18. package/src/ChevronUp.tsx +11 -0
  19. package/src/Collapse.tsx +11 -0
  20. package/src/ColorPicker.tsx +11 -0
  21. package/src/{Minus.tsx → Divider.tsx} +1 -1
  22. package/src/Edit.tsx +11 -0
  23. package/src/File.tsx +1 -1
  24. package/src/FileSmall.tsx +11 -0
  25. package/src/Filter.tsx +11 -0
  26. package/src/Key.tsx +11 -0
  27. package/src/Laptop.tsx +11 -0
  28. package/src/Link.tsx +1 -1
  29. package/src/Locked.tsx +11 -0
  30. package/src/LongAnswer.tsx +11 -0
  31. package/src/Mail.tsx +11 -0
  32. package/src/Minimize.tsx +11 -0
  33. package/src/Moon.tsx +11 -0
  34. package/src/MoreVert.tsx +11 -0
  35. package/src/{Palette.tsx → Pallet.tsx} +1 -1
  36. package/src/{Invite.tsx → PeopleInvite.tsx} +2 -4
  37. package/src/Presentation.tsx +11 -0
  38. package/src/PushPin.tsx +11 -0
  39. package/src/Reply.tsx +11 -0
  40. package/src/Section.tsx +11 -0
  41. package/src/Shape.tsx +1 -1
  42. package/src/SimpleAnswer.tsx +11 -0
  43. package/src/Sort.tsx +11 -0
  44. package/src/SoundOn.tsx +11 -0
  45. package/src/Soundoff.tsx +11 -0
  46. package/src/Speaker.tsx +11 -0
  47. package/src/Sun.tsx +11 -0
  48. package/src/TaskFile.tsx +11 -0
  49. package/src/Telegram.tsx +11 -0
  50. package/src/Unlocked.tsx +11 -0
  51. package/src/Upload.tsx +11 -0
  52. package/src/VariantSelect.tsx +11 -0
  53. package/src/Video.tsx +11 -0
  54. package/src/Window.tsx +11 -0
  55. package/tsconfig.json +114 -2
  56. package/.turbo/turbo-build.log +0 -14
  57. package/dist/index.d.ts +0 -147
  58. package/dist/index.js +0 -1134
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const FileSmall = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M7.579 3.042C5.837 3.211 4.403 4.544 4.073 6.3c-.078.41-.078 10.99 0 11.4a4.015 4.015 0 0 0 2.647 3.072c.617.211.534.208 5.28.208 3.485 0 4.479-.011 4.7-.053a4.025 4.025 0 0 0 3.038-2.545c.246-.653.235-.44.251-5.16.015-4.287.014-4.322-.07-4.72a4.452 4.452 0 0 0-.619-1.488c-.337-.511-2.8-2.975-3.31-3.311a4.2 4.2 0 0 0-1.43-.606l-.42-.096-3.12.005c-1.716.003-3.265.019-3.441.036m5.432 3.208c.022 1.416.047 1.562.36 2.169.232.449.761.978 1.21 1.21.607.313.753.338 2.169.36l1.25.021-.001 3.645c-.001 2.312-.016 3.709-.041 3.821-.154.664-.818 1.328-1.482 1.482-.241.055-8.711.055-8.952 0-.664-.154-1.328-.818-1.482-1.482-.055-.242-.055-10.71 0-10.952.151-.654.818-1.328 1.466-1.48.084-.02 1.351-.038 2.817-.04L12.99 5l.021 1.25m3.679 1.741c-.731.01-.898.001-1.044-.055a1.007 1.007 0 0 1-.552-.516c-.089-.191-.093-.242-.094-1.1v-.9l1.28 1.28 1.281 1.28-.871.011m-7.93 3.048c-.264.049-.367.097-.507.24-.313.32-.305 1.136.014 1.454.236.236.328.247 2.133.247 1.469 0 1.638-.007 1.808-.073.355-.136.512-.415.512-.907 0-.481-.138-.738-.479-.896-.173-.08-.249-.084-1.741-.091-.858-.003-1.641.008-1.74.026m0 4.001c-.264.047-.367.096-.507.239-.313.32-.305 1.136.014 1.454.247.248.237.247 3.133.247 2.435 0 2.633-.005 2.808-.073.355-.136.512-.415.512-.907 0-.481-.138-.738-.479-.896-.177-.082-.232-.084-2.741-.09-1.408-.004-2.641.008-2.74.026"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Filter.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Filter = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M5.503 3.042c-1.016.172-1.947.934-2.301 1.883-.182.488-.201.692-.201 2.235 0 1.666.019 1.817.284 2.36.164.337.189.363 2.396 2.58 1.226 1.232 2.25 2.279 2.274 2.327.032.062.045.851.045 2.684 0 2.453.004 2.613.079 2.905a2.5 2.5 0 0 0 2.557 1.895c.31-.018.519-.077 2.065-.59.945-.314 1.844-.635 1.997-.715.58-.301 1.049-.911 1.223-1.59.074-.288.079-.45.079-2.405 0-1.465.013-2.123.045-2.184.024-.048 1.048-1.095 2.274-2.327 2.895-2.908 2.679-2.51 2.68-4.932.001-1.585-.02-1.797-.233-2.319a2.99 2.99 0 0 0-1.47-1.537c-.657-.316-.005-.289-7.176-.297-3.531-.003-6.509.009-6.617.027M18.34 5.066c.253.087.507.341.594.594.056.165.066.39.066 1.51 0 .89-.014 1.344-.045 1.403-.024.048-1.048 1.095-2.274 2.327-2.207 2.217-2.232 2.243-2.396 2.58-.277.567-.284.632-.284 2.98-.001 1.988-.005 2.086-.079 2.207a.56.56 0 0 1-.168.176c-.157.084-3.168 1.077-3.265 1.077-.144 0-.325-.111-.411-.252-.075-.123-.078-.22-.079-2.708 0-2.9 0-2.9-.284-3.48-.164-.337-.189-.363-2.396-2.58-1.226-1.232-2.25-2.279-2.274-2.327C5.014 8.514 5 8.06 5 7.17c0-1.505.013-1.585.3-1.872.314-.314-.209-.291 6.683-.295 5.637-.003 6.179.003 6.357.063"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Key.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Key = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M11.284 2.042a6.205 6.205 0 0 0-2.624.982 5.989 5.989 0 0 0-2.079 7.528 6.037 6.037 0 0 0 2.089 2.433l.33.222v3.97c0 4.465-.017 4.208.299 4.524.311.312.157.299 3.701.299s3.39.013 3.701-.299c.302-.302.299-.274.299-2.701s.003-2.399-.299-2.701c-.247-.247-.442-.299-1.128-.299H15l.003-1.41.002-1.41.346-.22c.492-.313 1.277-1.098 1.622-1.622.952-1.447 1.244-3.087.848-4.76-.533-2.245-2.355-3.988-4.661-4.459-.482-.098-1.407-.136-1.876-.077m1.361 2.017c1.636.286 2.881 1.465 3.261 3.087.102.432.102 1.276 0 1.708a4.09 4.09 0 0 1-1.613 2.412 6.55 6.55 0 0 1-.788.434l-.505.236V18h2v2h-4v-8.07l-.439-.19c-.752-.324-1.309-.747-1.74-1.321a3.991 3.991 0 0 1-.155-4.615c.848-1.306 2.458-2.012 3.979-1.745M11.58 6.047c-.721.138-1.381.801-1.536 1.545-.139.665.061 1.32.552 1.812.797.796 2.011.796 2.808 0 .796-.797.796-2.011 0-2.808-.491-.49-1.127-.682-1.824-.549"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Laptop.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Laptop = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M6.362 4.061c-.835.151-1.583.65-1.961 1.309a3.663 3.663 0 0 0-.359 1.07c-.056.354-.056 7.766 0 8.12.054.343.21.81.357 1.066.396.691 1.181 1.198 2.066 1.334.186.029 2.024.039 5.695.031l5.42-.012.296-.091c.584-.18.987-.426 1.349-.822.286-.314.493-.689.642-1.166l.113-.36.012-3.88c.013-4.102.008-4.251-.172-4.78a2.39 2.39 0 0 0-.585-.977c-.425-.453-.949-.726-1.622-.843-.485-.085-10.783-.083-11.251.001m10.993 2.001a.862.862 0 0 1 .584.589c.055.189.061.658.052 3.892-.011 3.647-.012 3.678-.096 3.86-.046.1-.151.248-.233.327-.295.287.06.27-5.682.27-5.774 0-5.401.019-5.703-.283C5.99 14.43 6 14.584 6 10.5c0-4.091-.011-3.929.28-4.22.291-.291-.048-.274 5.703-.277 4.559-.003 5.187.004 5.372.059M2.664 18.063a1.005 1.005 0 0 0-.533.448c-.095.161-.111.233-.111.489s.016.328.111.489c.129.22.306.365.547.45.152.054 1.238.061 9.32.061 10.267 0 9.377.027 9.703-.299a.984.984 0 0 0 0-1.402c-.326-.327.566-.299-9.718-.296-7.848.002-9.185.011-9.319.06"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Link.tsx CHANGED
@@ -2,7 +2,7 @@ import { SvgIcon } from '@mui/material';
2
2
  import { IconProps } from '../types';
3
3
 
4
4
  export const Link = ({ ...props }: IconProps) => (
5
- <SvgIcon {...props} viewBox="0 0 16 16">
5
+ <SvgIcon {...props}>
6
6
  <path
7
7
  d="M9.856 2.35a3.418 3.418 0 0 0-1.575.693c-.103.083-.632.597-1.174 1.141l-.987.989.466.467.466.466.974-.969a33.633 33.633 0 0 1 1.119-1.082 1.936 1.936 0 0 1 1.228-.404c.319.001.604.07.907.221.184.092.274.16.481.367.207.207.275.297.367.481.152.306.219.583.219.91 0 .37-.062.631-.225.952-.114.225-.271.399-1.259 1.392l-.969.974.467.466.467.466 1.075-1.08c1.136-1.141 1.234-1.257 1.456-1.72a3.41 3.41 0 0 0 .172-2.445 3.375 3.375 0 0 0-2.166-2.166 3.786 3.786 0 0 0-1.509-.119M7.52 7.533l-1.88 1.88.473.474.474.473 1.886-1.887 1.887-1.886-.467-.467a12.282 12.282 0 0 0-.479-.467c-.008 0-.86.846-1.894 1.88m-3.417-.34c-1.188 1.194-1.317 1.352-1.543 1.9a3.128 3.128 0 0 0-.242 1.282 3.308 3.308 0 0 0 3.317 3.307c.543 0 .99-.102 1.472-.334.437-.212.626-.373 1.733-1.481l1.04-1.04-.466-.466-.465-.466-1.015 1.007c-.995.988-1.166 1.137-1.464 1.273-.284.13-.553.179-.908.165-.55-.021-.923-.182-1.311-.567a1.97 1.97 0 0 1-.508-.8c-.068-.194-.074-.248-.075-.6-.001-.439.045-.642.217-.96.143-.264.213-.341 1.253-1.387l.968-.974-.46-.459c-.253-.253-.466-.46-.473-.46-.008 0-.489.477-1.07 1.06"
8
8
  fillRule="evenodd"
package/src/Locked.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Locked = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M11.34 2.046c-.711.09-1.522.404-2.16.834-1.154.779-1.966 2.115-2.138 3.519C7.018 6.595 7 7.639 7 8.869V11H5.927c-1.235 0-1.35.021-1.628.299C3.98 11.617 4 11.277 4 16.5s-.02 4.883.299 5.201c.324.324-.322.299 7.701.299s7.377.025 7.701-.299c.319-.318.299.022.299-5.201s.02-4.883-.299-5.201c-.278-.278-.393-.299-1.628-.299H17V8.869c0-1.23-.018-2.274-.042-2.47a5.2 5.2 0 0 0-.839-2.223c-.271-.405-.89-1.024-1.295-1.295a5.07 5.07 0 0 0-3.484-.835m1.239 2.015c.606.125 1.1.391 1.535.825.304.305.494.586.648.958.229.556.238.67.238 3.014V11H9V8.858c0-2.344.009-2.458.238-3.014a3.009 3.009 0 0 1 2.734-1.841c.171-.002.444.024.607.058M18 16.5V20H6v-7h12v3.5m-7 0V18h2v-3h-2v1.5"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const LongAnswer = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M5.503 3.042c-1.016.172-1.947.934-2.301 1.883-.208.556-.201.308-.201 7.067-.001 5.509.007 6.328.061 6.589a2.993 2.993 0 0 0 2.357 2.357c.444.092 9.828.092 10.217 0 .529-.124.549-.141 2.872-2.469 2.316-2.321 2.307-2.311 2.432-2.838.09-.385.089-9.773-.002-10.212a2.96 2.96 0 0 0-1.642-2.107c-.657-.316-.005-.289-7.176-.297-3.531-.003-6.509.009-6.617.027M18.34 5.066c.115.039.263.135.361.233.314.314.299.106.299 4.126v3.57l-1.77.015c-1.987.018-1.937.012-2.57.326a2.925 2.925 0 0 0-1.458 1.589c-.185.497-.201.679-.201 2.425L13 19H9.427c-4.022 0-3.814.015-4.128-.299C4.977 18.379 5 18.903 5 12c0-6.904-.024-6.379.3-6.702.314-.314-.209-.291 6.683-.295 5.637-.003 6.179.003 6.357.063M7.252 7.078C7.03 7.213 7 7.325 7 8s.03.787.252.922c.125.076.236.078 4.74.078 5.092 0 4.766.017 4.93-.252C16.99 8.636 17 8.545 17 8c0-.545-.01-.636-.078-.748-.164-.269.162-.252-4.93-.252-4.504 0-4.615.002-4.74.078m0 4C7.03 11.213 7 11.325 7 12s.03.787.252.922c.124.075.22.078 2.748.078s2.624-.003 2.748-.078c.222-.135.252-.247.252-.922s-.03-.787-.252-.922C12.624 11.003 12.528 11 10 11s-2.624.003-2.748.078m0 4C7.03 15.213 7 15.325 7 16s.03.787.252.922c.121.074.212.078 1.748.078s1.627-.004 1.748-.078c.222-.135.252-.247.252-.922s-.03-.787-.252-.922C10.627 15.004 10.536 15 9 15s-1.627.004-1.748.078M19 15.09c0 .128-3.782 3.91-3.91 3.91H15v-1.573c0-1.79.006-1.835.3-2.129.288-.288.314-.291 2.11-.295L19 15v.09"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Mail.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Mail = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M2.664 4.063a1.005 1.005 0 0 0-.533.448L2.02 4.7v14.6l.111.189c.129.22.306.365.547.45.152.054 1.238.061 9.32.061 10.267 0 9.377.027 9.703-.299.324-.324.299.322.299-7.701s.025-7.377-.299-7.701c-.326-.327.566-.299-9.718-.296-7.848.002-9.185.011-9.319.06M15.187 8.36c-1.731 1.298-3.165 2.36-3.187 2.36-.022 0-1.456-1.062-3.187-2.36L5.667 6h12.666l-3.146 2.36M7.79 10.091c2.583 1.937 3.801 2.827 3.915 2.86a.959.959 0 0 0 .59 0c.114-.033 1.332-.923 3.915-2.86a478.782 478.782 0 0 1 3.77-2.811c.011 0 .02 2.412.02 5.36V18H4v-5.36c0-2.948.009-5.36.02-5.36.011 0 1.707 1.265 3.77 2.811"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Minimize = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M12.643 3.069c-.242.085-.496.349-.58.602-.061.184-.066.43-.053 2.576.015 2.299.018 2.384.104 2.711a4.282 4.282 0 0 0 1.063 1.865 4.282 4.282 0 0 0 1.865 1.063c.327.086.412.089 2.711.104 2.693.017 2.637.022 2.947-.288a.984.984 0 0 0 .001-1.403c-.302-.302-.271-.299-2.726-.299-1.431 0-2.243-.015-2.383-.044a2.062 2.062 0 0 1-1.548-1.548c-.029-.14-.044-.952-.044-2.383 0-2.455.003-2.424-.299-2.726a.998.998 0 0 0-1.058-.23m-9 8.999C3.289 12.195 3 12.614 3 13c0 .242.119.521.299.701.302.302.274.299 2.701.299 1.368 0 2.231.016 2.383.043.768.141 1.433.806 1.574 1.574.027.152.043 1.015.043 2.383 0 2.427-.003 2.399.299 2.701a.984.984 0 0 0 1.403-.001c.309-.309.303-.252.289-2.946l-.013-2.374-.105-.385a4.034 4.034 0 0 0-1.604-2.283 5.037 5.037 0 0 0-1.311-.598c-.329-.087-.404-.089-2.738-.1-2.11-.009-2.421-.002-2.577.054"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Moon.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Moon = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M13.12 2.039c-1.804.181-3.413.768-4.84 1.767-3.542 2.48-5.102 6.953-3.858 11.059a9.762 9.762 0 0 0 2.517 4.196 9.446 9.446 0 0 0 2.438 1.802c2.709 1.409 5.845 1.508 8.683.275.713-.309.997-.678.926-1.202-.052-.375-.269-.636-.718-.861-.863-.433-1.835-1.239-2.509-2.081a7.999 7.999 0 0 1 0-9.988c.69-.862 1.652-1.65 2.59-2.122.505-.254.747-.739.611-1.225-.09-.321-.329-.537-.849-.769a9.822 9.822 0 0 0-2.642-.773c-.602-.09-1.824-.13-2.349-.078m2.12 2.062c.231.036.434.079.451.095.017.016-.046.091-.14.167-.611.49-1.354 1.326-1.871 2.104-.864 1.302-1.332 2.547-1.607 4.273-.068.425-.068 2.095 0 2.52.275 1.726.743 2.971 1.607 4.273.517.778 1.26 1.614 1.871 2.104.094.076.157.151.14.166-.068.064-.826.163-1.411.184-3.19.118-6.124-1.67-7.507-4.575a8.05 8.05 0 0 1-.596-5.06c.709-3.387 3.559-5.948 7.023-6.311.477-.05 1.542-.019 2.04.06"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const MoreVert = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M11.58 2.047c-.721.138-1.381.801-1.536 1.545C9.789 4.816 10.751 6 12 6c1.08 0 2-.92 2-2 0-.523-.21-1.017-.596-1.404-.491-.49-1.127-.682-1.824-.549m0 8C10.707 10.214 10 11.087 10 12c0 .92.69 1.768 1.592 1.956C12.816 14.211 14 13.249 14 12c0-.523-.21-1.017-.596-1.404-.491-.49-1.127-.682-1.824-.549m0 8c-.721.138-1.381.801-1.536 1.545C9.789 20.816 10.751 22 12 22c1.08 0 2-.92 2-2 0-.523-.21-1.017-.596-1.404-.491-.49-1.127-.682-1.824-.549"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -1,7 +1,7 @@
1
1
  import { SvgIcon } from '@mui/material';
2
2
  import { IconProps } from '../types';
3
3
 
4
- export const Palette = ({ ...props }: IconProps) => (
4
+ export const Pallet = ({ ...props }: IconProps) => (
5
5
  <SvgIcon {...props}>
6
6
  <path
7
7
  d="M4.04 1.026c-.948.165-1.445.391-1.986.905-.481.457-.781.984-.964 1.694-.066.258-.07.738-.07 7.655v7.38l.096.42c.199.877.55 1.57 1.123 2.219.816.924 1.852 1.479 3.101 1.659.18.026 2.807.041 7.365.041 7.547.001 7.406.004 7.995-.186a3.281 3.281 0 0 0 1.9-1.613c.378-.748.409-1.021.389-3.38-.018-2.079-.025-2.157-.255-2.731-.177-.443-.371-.733-.73-1.093-.36-.359-.65-.553-1.093-.73-.499-.2-.739-.233-1.825-.254l-1.015-.02.659-.666c.689-.697.914-.987 1.13-1.461.213-.465.278-.78.278-1.345 0-.729-.165-1.265-.578-1.885-.237-.355-2.772-2.897-3.151-3.159-1.185-.821-2.589-.84-3.797-.052-.127.084-.541.456-.918.828l-.686.675-.018-1.033c-.019-1.119-.05-1.323-.291-1.897-.319-.763-.99-1.412-1.788-1.731-.58-.232-.642-.238-2.791-.248-1.089-.005-2.025-.002-2.08.008m4.07 2.063c.397.157.679.451.815.851.079.231.082 14.376.003 14.68-.302 1.166-1.086 1.977-2.21 2.284-.404.111-1.134.102-1.518-.018a2.887 2.887 0 0 1-1.302-.784c-.39-.39-.6-.734-.784-1.282l-.094-.28-.011-7.097c-.007-4.695.003-7.171.03-7.317.106-.574.489-.971 1.046-1.084.096-.019 1.003-.032 2.015-.028 1.619.007 1.861.016 2.01.075m6.95 2.893c.204.097.435.31 1.542 1.416 1.515 1.515 1.537 1.546 1.537 2.122 0 .624.224.366-3.676 4.245L11.02 17.19l-.011-4.225-.01-4.225 1.29-1.285c.71-.706 1.364-1.33 1.454-1.386.424-.264.883-.295 1.317-.087m5.112 9.131c.305.124.591.41.715.715l.093.232v3.88l-.093.232a1.38 1.38 0 0 1-.715.715l-.232.093-4.94.009-4.94.009 3.011-3.001 3.011-3.001 1.929.012c1.916.012 1.931.013 2.161.105m-14.592.934c-.543.104-1.128.563-1.373 1.078-.578 1.214.167 2.637 1.488 2.842a1.99 1.99 0 0 0 2.272-1.662 1.937 1.937 0 0 0-.563-1.709c-.491-.49-1.127-.682-1.824-.549"
@@ -1,10 +1,8 @@
1
1
  import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
2
3
 
3
- export type InviteProps = {
4
- [key: string]: any;
5
- };
6
4
 
7
- export const Invite = ({ ...props }: InviteProps) => (
5
+ export const PeopleInvite = ({ ...props }: IconProps) => (
8
6
  <SvgIcon {...props}>
9
7
  <path
10
8
  d="M20.295.277c-.229.038-.369.141-.457.336-.068.149-.076.272-.077 1.157l-.001.99h-.992c-.948 0-.999.004-1.169.09-.25.127-.332.288-.332.65 0 .362.082.523.332.65.17.086.221.09 1.169.09h.992v.992c0 .948.004.999.09 1.169.126.248.282.328.647.33.365.002.525-.078.653-.33.086-.17.09-.221.09-1.169V4.24h.992c.948 0 .999-.004 1.169-.09.25-.127.328-.281.328-.65s-.078-.523-.328-.65c-.17-.086-.221-.09-1.169-.09h-.992v-.992c0-.948-.004-.999-.09-1.169a.67.67 0 0 0-.21-.244c-.147-.081-.424-.115-.645-.078M11.58 3.023c-.566.079-.77.121-1.1.226a5.014 5.014 0 0 0-3.387 3.829c-.083.421-.091 1.34-.017 1.762a5.182 5.182 0 0 0 1.298 2.589c.153.161.271.298.262.305a14.61 14.61 0 0 1-.411.221c-1.823.965-3.188 2.586-3.858 4.585-.365 1.089-.447 1.435-.447 1.879 0 .751.219 1.277.76 1.825.363.367.802.604 1.294.697.47.089 11.582.089 12.052 0 .492-.093.931-.33 1.294-.697.541-.548.76-1.074.76-1.825 0-.443-.08-.781-.447-1.879a8.043 8.043 0 0 0-3.858-4.585 14.61 14.61 0 0 1-.411-.221c-.009-.007.109-.144.262-.305a5.015 5.015 0 0 0 1.128-1.93c.181-.59.22-.857.22-1.499 0-.642-.039-.909-.22-1.499-.528-1.725-2.027-3.063-3.809-3.402-.325-.061-1.143-.107-1.365-.076m1.28 2.097a3.09 3.09 0 0 1 2.026 2.04c.135.434.135 1.246 0 1.68a3.086 3.086 0 0 1-2.046 2.046c-.436.135-1.248.135-1.68 0A3.086 3.086 0 0 1 9.114 8.84c-.136-.434-.136-1.246 0-1.68a3.088 3.088 0 0 1 2.329-2.119c.308-.065 1.101-.021 1.417.079m.345 7.997c1.868.401 3.469 1.654 4.252 3.33.168.36.586 1.607.641 1.913.036.196-.111.477-.298.57-.131.066-.491.07-5.8.07-6.399 0-5.854.029-6.032-.32-.113-.222-.109-.243.178-1.156.373-1.187.775-1.907 1.467-2.632.954-.997 2.119-1.607 3.504-1.833.493-.081 1.581-.051 2.088.058"
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Presentation = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M4.503 4.042A3.025 3.025 0 0 0 2.298 5.74c-.297.633-.278.205-.278 6.26s-.019 5.627.278 6.26a2.905 2.905 0 0 0 1.442 1.444c.666.315.137.296 8.26.296 8.124 0 7.595.019 8.26-.296a2.847 2.847 0 0 0 1.42-1.404c.337-.689.32-.348.32-6.3 0-5.891.013-5.606-.296-6.26a2.94 2.94 0 0 0-1.408-1.428c-.66-.318.116-.289-8.176-.297-4.081-.003-7.509.009-7.617.027M20 12.073c0 5.701.021 5.308-.299 5.628-.324.324.322.299-7.703.299-7.797 0-7.315.014-7.624-.222a1.19 1.19 0 0 1-.243-.289L4.02 17.3l-.011-5.15L3.999 7H20v5.073M5.66 8.652c-.165.165-.193.328-.174.997.015.536.051.642.263.78.101.067.449.071 6.251.071 5.802 0 6.15-.004 6.251-.071.212-.138.248-.244.263-.78.019-.669-.009-.832-.174-.997l-.132-.132H5.792l-.132.132m-.004 3.004-.136.136v1.416l.136.136.136.136h11.416l.136-.136.136-.136v-1.416l-.136-.136-.136-.136H5.792l-.136.136m0 3-.136.136v1.416l.136.136.136.136h9.416l.136-.136.136-.136v-1.416l-.136-.136-.136-.136H5.792l-.136.136"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const PushPin = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M14.01 3.058c-.541.123-.555.135-3.17 2.727-.781.773-1.481 1.437-1.555 1.474-.39.196-.346.192-2.685.239l-2.22.043-.264.125c-.441.208-.711.561-.777 1.019-.032.226.061.617.208.874.062.107 1.009 1.089 2.328 2.411l2.223 2.231-2.346 2.349c-2.266 2.27-2.348 2.357-2.409 2.567-.078.269-.078.298-.001.558.073.244.28.493.515.617.214.113.658.12.863.013.077-.04 1.188-1.119 2.47-2.398l2.329-2.326 2.291 2.283c2.54 2.533 2.44 2.45 3.01 2.486.507.032.93-.205 1.169-.657.067-.128.142-.332.165-.453.024-.124.053-1.091.067-2.22.026-2.113.036-2.216.227-2.599.05-.1.801-.885 1.991-2.081 2.116-2.127 2.092-2.098 2.227-2.759.084-.413.034-.776-.168-1.213-.139-.302-.189-.356-2.43-2.6-1.258-1.26-2.378-2.351-2.488-2.424a2.096 2.096 0 0 0-1.57-.286m2.845 8.032c-1.014 1.017-1.898 1.931-1.964 2.03-.187.28-.362.649-.494 1.044-.149.442-.194.984-.196 2.356l-.001.94-3.96-3.96c-2.178-2.178-3.96-3.973-3.96-3.99 0-.016.568-.03 1.262-.03 1.382 0 1.584-.022 2.196-.244.729-.263.788-.313 2.842-2.36l1.88-1.875 2.119 2.119 2.12 2.119-1.844 1.851"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Reply.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Reply = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M13.984 5.063C12.795 5.329 12 6.332 12 7.564v.35l-.23.026c-1.956.221-3.56.701-4.889 1.461a8.987 8.987 0 0 0-3.111 3.045c-.825 1.372-1.376 3.095-1.646 5.139-.177 1.343-.161 1.556.141 1.893.274.304.624.412.991.305.28-.081.424-.208.819-.718 1.231-1.589 2.632-2.652 4.4-3.339.994-.387 1.83-.583 3.351-.787l.166-.023.017.712c.015.596.032.756.106.983a2.527 2.527 0 0 0 2.243 1.737 2.455 2.455 0 0 0 1.646-.503c.241-.193 4.732-4.41 5.048-4.742.258-.27.51-.735.608-1.121.033-.132.06-.393.06-.582 0-.746-.307-1.406-.888-1.912-.761-.662-4.878-4.015-5.082-4.139a2.513 2.513 0 0 0-1.766-.286m.704 1.989c.178.08 4.936 4.021 4.986 4.13a.563.563 0 0 1 .001.434c-.048.105-4.811 4.606-4.965 4.691-.198.11-.501.016-.629-.195-.076-.124-.081-.199-.081-1.235 0-1.29-.025-1.432-.295-1.702-.302-.302-.747-.356-1.945-.235-2.797.284-5.081 1.131-7.01 2.603-.104.079-.19.126-.19.103 0-.022.074-.253.164-.513.559-1.605 1.489-2.89 2.656-3.669 1.166-.778 2.595-1.207 4.749-1.426.448-.045.901-.114 1.046-.159.349-.108.619-.298.733-.515.088-.169.092-.214.092-1.08 0-.836.006-.914.081-1.036a.48.48 0 0 1 .607-.196"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Section = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M5.664 5.063a1.005 1.005 0 0 0-.533.448L5.02 5.7v1.6l.111.189c.246.419.492.511 1.367.511.768 0 .949-.045 1.203-.299C7.955 7.447 8 7.266 8 6.5s-.045-.947-.299-1.201c-.256-.256-.434-.3-1.218-.296-.47.002-.709.019-.819.06m4.979.006a1.066 1.066 0 0 0-.577.591c-.051.149-.066.344-.066.84 0 .766.045.947.299 1.201.314.314.097.299 4.201.299 4.104 0 3.887.015 4.201-.299.254-.254.299-.435.299-1.201s-.045-.947-.299-1.201c-.315-.315-.094-.299-4.218-.296-3.21.003-3.685.011-3.84.066m-5 5a1.066 1.066 0 0 0-.577.591c-.094.278-.094 1.402 0 1.68.087.253.341.507.594.594.278.094 1.402.094 1.68 0 .253-.087.507-.341.594-.594.094-.278.094-1.402 0-1.68a1.046 1.046 0 0 0-.594-.594c-.268-.091-1.436-.089-1.697.003m5 0a1.066 1.066 0 0 0-.577.591c-.051.149-.066.344-.066.84 0 .766.045.947.299 1.201.314.314.097.299 4.201.299 4.104 0 3.887.015 4.201-.299.254-.254.299-.435.299-1.201s-.045-.947-.299-1.201c-.315-.315-.094-.299-4.218-.296-3.21.003-3.685.011-3.84.066m-5 5a1.066 1.066 0 0 0-.577.591c-.051.149-.066.344-.066.84 0 .766.045.947.299 1.201.254.254.435.299 1.201.299s.947-.045 1.201-.299c.254-.254.299-.435.299-1.201s-.045-.947-.299-1.201c-.256-.257-.434-.3-1.218-.296-.492.002-.709.019-.84.066m5 0a1.066 1.066 0 0 0-.577.591c-.051.149-.066.344-.066.84 0 .766.045.947.299 1.201.314.314.097.299 4.201.299 4.104 0 3.887.015 4.201-.299.254-.254.299-.435.299-1.201s-.045-.947-.299-1.201c-.315-.315-.094-.299-4.218-.296-3.21.003-3.685.011-3.84.066"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Shape.tsx CHANGED
@@ -2,7 +2,7 @@ import { SvgIcon } from '@mui/material';
2
2
  import { IconProps } from '../types';
3
3
 
4
4
  export const Shape = ({ ...props }: IconProps) => (
5
- <SvgIcon {...props} viewBox="0 0 16 16">
5
+ <SvgIcon {...props}>
6
6
  <path
7
7
  d="M9.34 2.039c-.36.082-.37.09-2.113 1.817-.521.516-.987.959-1.037.983-.26.131-.231.129-1.79.159l-1.48.03-.176.082a.87.87 0 0 0-.518.68c-.022.151.04.412.139.583.041.071.672.725 1.551 1.607l1.483 1.487-1.564 1.567c-1.511 1.513-1.565 1.571-1.606 1.711-.052.179-.052.198-.001.372a.739.739 0 0 0 .344.411c.142.075.438.08.575.009.051-.027.792-.746 1.646-1.599l1.553-1.551 1.527 1.522c1.694 1.689 1.627 1.633 2.007 1.658a.792.792 0 0 0 .779-.438c.045-.086.095-.222.111-.302.015-.083.035-.727.044-1.48.018-1.409.024-1.478.151-1.733.034-.067.535-.59 1.327-1.387 1.411-1.419 1.396-1.399 1.485-1.84.057-.275.023-.517-.111-.808-.093-.201-.127-.237-1.621-1.734-.839-.84-1.585-1.567-1.658-1.616-.297-.196-.7-.27-1.047-.19m1.897 5.354c-.676.679-1.265 1.288-1.31 1.354a2.973 2.973 0 0 0-.329.695c-.099.295-.129.657-.13 1.571l-.001.627L6.827 9a251.472 251.472 0 0 1-2.64-2.66c0-.011.378-.02.841-.02.921 0 1.056-.015 1.464-.163.486-.175.525-.208 1.895-1.573l1.253-1.25 1.413 1.413 1.413 1.412-1.229 1.234"
8
8
  fill="inherit"
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const SimpleAnswer = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M5.503 3.042c-1.013.17-1.947.934-2.301 1.883-.208.556-.201.308-.201 7.067-.001 6.886-.012 6.558.233 7.159a3.046 3.046 0 0 0 1.615 1.615c.6.245.274.234 7.151.234 6.876 0 6.551.011 7.15-.233a3.08 3.08 0 0 0 1.617-1.617c.233-.573.233-.573.233-4.081 0-3.623.013-3.458-.3-3.771a.987.987 0 0 0-1.169-.172 1.065 1.065 0 0 0-.489.585c-.027.097-.042 1.25-.042 3.292 0 3.541.012 3.387-.299 3.698-.322.322.202.299-6.701.299s-6.379.023-6.701-.299C4.977 18.379 5 18.903 5 12s-.023-6.379.299-6.701C5.61 4.987 5.456 5 9 5s3.39.013 3.701-.299a.984.984 0 0 0 0-1.402c-.312-.313-.146-.3-3.778-.294-1.773.002-3.312.019-3.42.037m12.652.011c-.261.074-.531.259-.854.586l-.28.282 1.531 1.53 1.531 1.529.331-.34c.456-.47.566-.699.566-1.182 0-.56-.1-.724-.939-1.555-.769-.761-.924-.858-1.411-.886a1.654 1.654 0 0 0-.475.036M12.937 8.01l-3.563 3.57-.192 1.383c-.167 1.201-.186 1.403-.144 1.531.071.214.218.37.425.449.178.068.197.067 1.569-.124l1.388-.193 3.57-3.563L19.56 7.5l-1.53-1.53-1.53-1.53-3.563 3.57m2.043 2.03-2.54 2.54-.51-.51-.51-.51 2.54-2.54 2.539-2.54.511.51.511.509-2.541 2.541"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Sort.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Sort = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M4.252 6.078C4.03 6.213 4 6.325 4 7s.03.787.252.922C4.378 7.998 4.513 8 12 8s7.622-.002 7.748-.078C19.97 7.787 20 7.675 20 7s-.03-.787-.252-.922C19.622 6.002 19.487 6 12 6s-7.622.002-7.748.078m2 5C6.03 11.213 6 11.325 6 12s.03.787.252.922c.125.076.244.078 5.748.078 5.504 0 5.623-.002 5.748-.078.222-.135.252-.247.252-.922s-.03-.787-.252-.922C17.623 11.002 17.504 11 12 11c-5.504 0-5.623.002-5.748.078m2 5C8.03 16.213 8 16.325 8 17s.03.787.252.922c.124.076.228.078 3.74.078 3.987 0 3.767.014 3.93-.252.068-.112.078-.203.078-.748 0-.545-.01-.636-.078-.748-.163-.266.057-.252-3.93-.252-3.512 0-3.616.002-3.74.078"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const SoundOn = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M12.795 3.036a1.1 1.1 0 0 0-.28.11c-.074.045-1.132.85-2.351 1.789-1.219.94-2.29 1.751-2.38 1.803-.351.202-.515.232-1.444.265-.554.019-.954.052-1.08.088-1.148.329-1.964 1.193-2.198 2.328-.091.44-.091 4.722 0 5.162a3 3 0 0 0 2.357 2.357c.196.041.521.062.949.063.708 0 1.018.05 1.343.214.104.053 1.206.881 2.449 1.84 1.243.959 2.337 1.782 2.431 1.828.21.105.565.113.791.019.216-.09.409-.283.523-.522l.094-.2.001-8.163c0-9.058.021-8.38-.265-8.674a1.027 1.027 0 0 0-.94-.307m5.865 2.399c-.209.095-.483.397-.537.591-.06.218-.053.535.017.734.033.094.148.29.256.435a8.187 8.187 0 0 1 1.427 3.157 8.064 8.064 0 0 1-1.427 6.453c-.231.313-.316.53-.316.81.001.308.068.494.253.695.211.23.423.328.707.328.447 0 .681-.203 1.29-1.118a9.99 9.99 0 0 0 0-11.04c-.428-.644-.691-.946-.909-1.045a1.052 1.052 0 0 0-.761 0M12 12.002c0 4.727-.01 5.917-.05 5.893-.028-.016-.663-.501-1.412-1.078-1.462-1.125-1.688-1.283-2.094-1.467-.528-.24-.942-.317-1.804-.337-.919-.022-1.091-.062-1.34-.311-.303-.303-.3-.273-.3-2.702 0-2.427-.003-2.399.299-2.701C5.551 9.047 5.736 9 6.482 9c.927 0 1.478-.114 2.134-.443.32-.16.804-.514 2.424-1.773.495-.385.914-.701.93-.702.017-.001.03 2.663.03 5.92m3.797-3.723c-.37.196-.58.593-.548 1.038.017.238.058.357.284.832.36.753.443 1.1.443 1.851 0 .751-.083 1.098-.443 1.851-.226.475-.267.594-.284.832-.024.336.054.574.264.806.337.374.833.441 1.201.162.393-.297.954-1.482 1.175-2.481.117-.53.127-1.736.019-2.25a6.336 6.336 0 0 0-.751-1.981c-.248-.421-.369-.563-.56-.661-.205-.104-.602-.104-.8.001"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Soundoff = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M12.795 3.036a1.1 1.1 0 0 0-.28.11c-.074.045-1.132.85-2.351 1.789-1.219.94-2.29 1.751-2.38 1.803-.351.202-.515.232-1.444.265-.554.019-.954.052-1.08.088-1.148.329-1.964 1.193-2.198 2.328-.091.44-.091 4.722 0 5.162a3 3 0 0 0 2.357 2.357c.196.041.521.062.949.063.708 0 1.018.05 1.343.214.104.053 1.206.881 2.449 1.84 1.243.959 2.337 1.782 2.431 1.828.21.105.565.113.791.019.216-.09.409-.283.523-.522l.094-.2.001-8.163c0-9.058.021-8.38-.265-8.674a1.027 1.027 0 0 0-.94-.307M12 12.002c0 4.727-.01 5.917-.05 5.893-.028-.016-.663-.501-1.412-1.078-1.462-1.125-1.688-1.283-2.094-1.467-.528-.24-.942-.317-1.804-.337-.919-.022-1.091-.062-1.34-.311-.303-.303-.3-.273-.3-2.702 0-2.427-.003-2.399.299-2.701C5.551 9.047 5.736 9 6.482 9c.927 0 1.478-.114 2.134-.443.32-.16.804-.514 2.424-1.773.495-.385.914-.701.93-.702.017-.001.03 2.663.03 5.92"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Speaker = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M3.58 2.047c-.733.14-1.4.821-1.537 1.57-.067.371-.055 1.989.019 2.299a2.042 2.042 0 0 0 1.433 1.468c.307.082 2.164.078 2.484-.006a2.027 2.027 0 0 0 1.399-1.399c.084-.32.088-2.177.006-2.484a2.042 2.042 0 0 0-1.468-1.433c-.295-.07-1.991-.081-2.336-.015m7.28 0c-.719.137-1.405.827-1.54 1.548-.066.358-.051 2.065.021 2.343a2.02 2.02 0 0 0 1.439 1.448c.28.074 2.16.074 2.44 0a2.02 2.02 0 0 0 1.439-1.448c.072-.278.087-1.985.021-2.343-.138-.739-.824-1.414-1.577-1.552-.287-.052-1.963-.049-2.243.004m7.205.016c-.677.164-1.267.747-1.449 1.432-.082.307-.078 2.164.006 2.484.17.656.743 1.229 1.399 1.399.32.084 2.177.088 2.484.006a2.042 2.042 0 0 0 1.433-1.468c.074-.31.086-1.928.019-2.299-.141-.768-.806-1.433-1.574-1.574-.354-.064-2.027-.05-2.318.02M3.58 9.047c-.733.14-1.4.821-1.537 1.57-.06.331-.06 9.435 0 9.766.141.768.806 1.433 1.574 1.574.334.061 16.432.061 16.766 0 .768-.141 1.433-.806 1.574-1.574.06-.331.06-9.435 0-9.766-.141-.768-.806-1.433-1.574-1.574-.308-.056-16.508-.052-16.803.004"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Sun.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Sun = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M11 1.5V3h2V0h-2v1.5M3.51 3.51l-.71.711L3.86 5.28l1.06 1.06.71-.71.71-.71-1.06-1.06L4.219 2.8l-.709.71m15.21.35-1.06 1.06.71.71.71.71 1.06-1.06 1.06-1.061-.71-.709-.711-.71-1.059 1.06m-7.46 1.184c-1.757.183-3.484 1.096-4.593 2.428-1.208 1.451-1.792 3.266-1.634 5.078.085.975.276 1.676.685 2.51a6.88 6.88 0 0 0 2.058 2.515 7.002 7.002 0 0 0 8.448 0 7.08 7.08 0 0 0 2.617-4.104 7.272 7.272 0 0 0-.201-3.682 7.243 7.243 0 0 0-2.008-3.028 7.036 7.036 0 0 0-5.372-1.717m1.734 2.052c.938.206 1.74.623 2.414 1.256.74.695 1.205 1.496 1.461 2.517.097.387.108.503.108 1.131s-.011.744-.108 1.131c-.255 1.015-.713 1.807-1.453 2.511A5.047 5.047 0 0 1 13 16.905c-.475.102-1.525.102-2 0a5.045 5.045 0 0 1-3.754-3.37c-.182-.562-.226-.86-.226-1.535 0-.675.044-.973.226-1.535a5.006 5.006 0 0 1 1.666-2.391 5.14 5.14 0 0 1 2.389-1.032c.344-.054 1.346-.022 1.693.054M0 12v1h3v-2H0v1m21 0v1h3v-2h-3v1M3.85 18.73 2.8 19.781l.71.709.711.71 1.059-1.06 1.059-1.06-.699-.7c-.384-.385-.708-.7-.72-.7-.011 0-.493.473-1.07 1.05m14.51-.35-.699.7 1.059 1.06 1.059 1.06.711-.71.71-.709-1.05-1.051a40.692 40.692 0 0 0-1.07-1.05c-.012 0-.336.315-.72.7M11 22.5V24h2v-3h-2v1.5"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const TaskFile = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M7.503 3.042A3.128 3.128 0 0 0 5.67 4.127c-.225.28-.511.853-.596 1.193-.08.326-.08 13.034 0 13.36.085.34.371.913.596 1.193.28.347.642.628 1.07.831.645.305.484.296 5.26.296 4.777 0 4.616.009 5.26-.296a2.847 2.847 0 0 0 1.42-1.404c.34-.695.32-.228.32-7.3 0-7.007.017-6.599-.296-7.26a2.94 2.94 0 0 0-1.408-1.428c-.647-.311-.245-.288-5.176-.297-2.431-.003-4.509.008-4.617.027m8.837 2.024c.115.039.263.135.361.233.322.322.299-.202.299 6.701 0 6.905.024 6.379-.3 6.702-.318.318-.033.3-4.763.289l-4.199-.011-.199-.102c-.226-.117-.437-.369-.498-.596-.029-.104-.039-2.161-.031-6.368L7.02 5.7l.111-.189c.125-.213.318-.375.539-.454.122-.043.94-.054 4.313-.055 3.773-.002 4.181.004 4.357.064M8.66 6.652c-.165.165-.193.328-.174.997.015.536.051.642.263.78.1.066.315.071 3.251.071s3.151-.005 3.251-.071c.212-.138.248-.244.263-.78.019-.669-.009-.832-.174-.997l-.132-.132H8.792l-.132.132m-.004 3.004-.136.136v1.416l.136.136.136.136h6.416l.136-.136.136-.136V9.792l-.136-.136-.136-.136H8.792l-.136.136m0 3-.136.136v1.416l.136.136.136.136h6.416l.136-.136.136-.136v-1.416l-.136-.136-.136-.136H8.792l-.136.136m0 3-.136.136v1.416l.136.136.136.136h3.416l.136-.136.136-.136v-1.416l-.136-.136-.136-.136H8.792l-.136.136"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Telegram = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M21.2 2.549c-.389.144-19.106 8.044-19.231 8.116-.326.189-.525.645-.444 1.02.056.26.257.553.455.661.088.049 1.285.496 2.66.995 1.375.499 2.52.928 2.545.953.025.025.455 1.279.956 2.786.5 1.507.942 2.803.981 2.88.095.188.303.381.496.462.225.094.581.085.791-.018.094-.046.711-.536 1.371-1.088a48.466 48.466 0 0 1 1.246-1.023c.026-.01 1.041.678 2.256 1.529 1.216.851 2.274 1.574 2.353 1.607.192.08.549.078.745-.005.198-.084.402-.276.504-.473.095-.185 3.602-17.162 3.605-17.451a.963.963 0 0 0-.987-.977 1.478 1.478 0 0 0-.302.026m-2.459 9.394a807.328 807.328 0 0 1-1.411 6.783c-.025.054-.38-.179-1.954-1.282-1.122-.785-1.992-1.368-2.085-1.396-.408-.122-.674-.03-1.209.418-.224.188-.417.332-.428.321-.012-.011.044-.311.123-.667l.145-.646 2.944-3.187c3.229-3.495 3.163-3.413 3.124-3.845a.995.995 0 0 0-.354-.697c-.219-.186-.384-.237-.71-.217l-.266.016-4.373 2.431-4.373 2.431-1.287-.468c-.708-.256-1.3-.479-1.317-.494-.016-.015 3.305-1.433 7.38-3.15 4.076-1.717 7.415-3.11 7.421-3.095.006.014-.611 3.049-1.37 6.744m-7.63 1.459c-.49.529-.932 1.038-.981 1.13-.05.093-.139.389-.198.658-.059.27-.118.49-.13.49-.013 0-.151-.384-.307-.853l-.284-.853 1.365-.763c.75-.42 1.378-.765 1.395-.767.018-.002-.369.429-.86.958"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Unlocked = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M11.34 2.046a4.934 4.934 0 0 0-1.52.471c-1.414.694-2.36 1.899-2.723 3.47-.042.181-.07.565-.085 1.143L6.99 8h2.001l.02-.77c.024-.875.055-1.026.325-1.57a2.85 2.85 0 0 1 1.404-1.362c.481-.226.714-.277 1.26-.277s.779.051 1.26.277a2.905 2.905 0 0 1 1.444 1.442c.285.602.296.72.296 3.144V11H9.925c-5.528 0-5.245-.011-5.551.222a1.19 1.19 0 0 0-.243.289l-.111.189v9.6l.111.189c.061.103.17.234.243.289.309.236-.173.222 7.624.222 8.025 0 7.379.025 7.703-.299.319-.318.299.022.299-5.201s.02-4.883-.299-5.201c-.278-.278-.393-.299-1.626-.299h-1.07l-.015-2.37-.015-2.37-.107-.412c-.199-.761-.502-1.385-.942-1.936a5.04 5.04 0 0 0-4.586-1.866M18 16.5V20H6v-7h12v3.5m-7 0V18h2v-3h-2v1.5"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Upload.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Upload = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M11.64 3.068c-.153.053-.45.331-1.973 1.847-.986.982-1.838 1.861-1.894 1.955-.297.501-.07 1.175.476 1.41.244.105.603.097.833-.019.076-.039.538-.468 1.028-.954l.89-.885v3.862c0 4.345-.016 4.102.299 4.417a.984.984 0 0 0 1.402 0c.315-.315.299-.072.299-4.417V6.422l.89.885c.49.486.952.915 1.028.954.23.116.589.124.833.019.546-.235.773-.909.476-1.41-.056-.094-.908-.973-1.894-1.955-1.609-1.601-1.813-1.791-1.99-1.85a1.053 1.053 0 0 0-.703.003m-8.997 7.001a1.118 1.118 0 0 0-.343.229c-.309.309-.3.209-.3 3.26 0 1.626.017 2.839.042 3.043.1.817.464 1.729.95 2.38a5.084 5.084 0 0 0 3.407 1.977c.464.057 10.738.057 11.202 0a5.2 5.2 0 0 0 2.223-.839c.405-.271 1.024-.89 1.295-1.295a5.2 5.2 0 0 0 .839-2.223c.025-.204.042-1.417.042-3.043 0-3.05.009-2.951-.299-3.259a.984.984 0 0 0-1.402 0c-.308.308-.299.207-.299 3.27 0 2.961-.004 3.017-.233 3.581a3.08 3.08 0 0 1-1.617 1.617c-.594.241-.373.233-6.15.233-5.779 0-5.556.008-6.151-.234a3.046 3.046 0 0 1-1.615-1.615C4.004 16.586 4 16.53 4 13.569c0-3.063.009-2.962-.299-3.27a.998.998 0 0 0-1.058-.23"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const VariantSelect = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
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 0a3.563 3.563 0 0 0-1.143.422c-.425.24-1.008.823-1.248 1.248-.64 1.137-.64 2.399 0 3.536.24.425.823 1.008 1.248 1.248 1.137.64 2.399.64 3.536 0 .425-.24 1.008-.823 1.248-1.248.64-1.137.64-2.399 0-3.536-.24-.425-.823-1.008-1.248-1.248-.757-.426-1.574-.57-2.393-.422M8.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.098m8.991-.004c.313.143.622.45.766.761.098.21.113.293.113.604 0 .31-.015.393-.112.6a1.698 1.698 0 0 1-.764.767c-.21.098-.293.113-.604.113-.31 0-.393-.015-.6-.112a1.698 1.698 0 0 1-.767-.764c-.098-.21-.113-.293-.113-.604 0-.32.014-.389.124-.62.273-.573.795-.893 1.417-.867.223.009.362.041.54.122M6.875 13.062a3.563 3.563 0 0 0-1.143.422c-.425.24-1.008.823-1.248 1.248-.64 1.137-.64 2.399 0 3.536.24.425.823 1.008 1.248 1.248 1.137.64 2.399.64 3.536 0 .425-.24 1.008-.823 1.248-1.248.426-.757.567-1.542.424-2.36-.131-.755-.424-1.312-.98-1.868-.837-.837-1.937-1.185-3.085-.978m8.893.005a.493.493 0 0 0-.18.149c-.032.056-.055.393-.068 1.006-.029 1.323.025 1.269-1.298 1.298-.616.013-.95.036-1.007.069-.172.099-.215.279-.215.911s.043.812.215.911c.057.033.391.056 1.007.069 1.323.029 1.269-.025 1.298 1.298.013.616.036.95.069 1.007.099.172.279.215.911.215s.812-.043.911-.215c.033-.057.056-.391.069-1.007.029-1.323-.025-1.269 1.298-1.298.616-.013.95-.036 1.007-.069.172-.099.215-.279.215-.911s-.043-.812-.215-.911c-.057-.033-.391-.056-1.007-.069-1.323-.029-1.269.025-1.298-1.298-.013-.616-.036-.95-.069-1.007-.099-.173-.278-.215-.917-.214-.466.001-.622.015-.726.066m-7.667 2.068c.313.143.622.45.766.761.098.21.113.293.113.604 0 .31-.015.393-.112.6a1.698 1.698 0 0 1-.764.767c-.21.098-.293.113-.604.113-.31 0-.393-.015-.6-.112a1.698 1.698 0 0 1-.767-.764c-.098-.21-.113-.293-.113-.604 0-.32.014-.389.124-.62.273-.573.795-.893 1.417-.867.223.009.362.041.54.122"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Video.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Video = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M4.503 5.042c-1.016.172-1.947.934-2.301 1.883-.203.545-.201.472-.201 5.067-.001 4.69-.006 4.572.233 5.159a3.046 3.046 0 0 0 1.615 1.615c.604.246.175.234 8.151.234 6.4 0 7.32-.007 7.581-.062a3.003 3.003 0 0 0 2.357-2.357c.093-.448.093-8.714 0-9.162a2.96 2.96 0 0 0-1.642-2.107c-.66-.318.116-.289-8.176-.297-4.081-.003-7.509.009-7.617.027M19.34 7.066c.115.039.263.135.361.233.317.317.299.038.299 4.701 0 4.663.018 4.384-.299 4.701-.324.324.322.299-7.701.299s-7.377.025-7.701-.299C3.982 16.384 4 16.663 4 12c0-4.664-.018-4.384.3-4.702.316-.316-.325-.291 7.683-.295 6.567-.003 7.179.003 7.357.063M10.803 9.83a.734.734 0 0 0-.22.183c-.081.109-.083.165-.095 1.89-.007 1.123.004 1.833.03 1.929a.692.692 0 0 0 .164.27c.102.097.156.118.311.116.169-.002.331-.086 1.727-.894.847-.491 1.581-.93 1.63-.975a.505.505 0 0 0 .127-.482.526.526 0 0 0-.127-.215c-.101-.091-2.969-1.751-3.176-1.837-.169-.071-.206-.069-.371.015"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/src/Window.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ import { IconProps } from '../types';
3
+
4
+ export const Window = ({ ...props }: IconProps) => (
5
+ <SvgIcon {...props}>
6
+ <path
7
+ d="M4.503 4.042c-1.016.172-1.947.934-2.301 1.883-.206.552-.201.39-.201 6.067-.001 5.788-.01 5.564.233 6.159a3.046 3.046 0 0 0 1.615 1.615c.604.246.175.234 8.151.234 7.974 0 7.547.012 8.15-.233a3.08 3.08 0 0 0 1.617-1.617c.241-.594.233-.373.233-6.15 0-5.779.008-5.556-.234-6.151a2.99 2.99 0 0 0-1.47-1.537c-.66-.318.116-.289-8.176-.297-4.081-.003-7.509.009-7.617.027M20 12.573c0 5.141.019 4.81-.299 5.128-.324.324.322.299-7.701.299s-7.377.025-7.701-.299c-.318-.318-.299.013-.299-5.128V8h16v4.573"
8
+ fillRule="evenodd"
9
+ />
10
+ </SvgIcon>
11
+ );
package/tsconfig.json CHANGED
@@ -1,5 +1,117 @@
1
1
  {
2
- "extends": "@xipkg/config.typescript/react-library.json",
3
- "include": ["*", "src/Account.tsx", "src/Activity.tsx", "src/Arrow.tsx", "src/Bold.tsx", "src/Burger.tsx", "src/Calendar.tsx", "src/Camera.tsx", "src/Chat.tsx", "src/Check.tsx", "src/Cite.tsx", "src/Clip.tsx", "src/Announce.tsx", "src/AddChannel.tsx", "src/AddCategory.tsx", "src/Add.tsx", "src/Clock.tsx", "src/Close.tsx", "src/Code.tsx", "src/Copy.tsx", "src/Download.tsx", "src/Emotions.tsx", "src/Endcall.tsx", "src/Exit.tsx", "src/External.tsx", "src/Eyeoff.tsx", "src/Eyeon.tsx", "src/File.tsx", "src/Flag.tsx", "src/Folder.tsx", "src/Food.tsx", "src/Grid.tsx", "src/H1.tsx", "src/H2.tsx", "src/H3.tsx", "src/Hand.tsx", "src/Heart.tsx", "src/Home.tsx", "src/Invite.tsx", "src/Italic.tsx", "src/Link.tsx", "src/Maximize.tsx", "src/Microphone.tsx", "src/Minus.tsx", "src/Move.tsx", "src/Movie.tsx", "src/Music.tsx", "src/Nature.tsx", "src/Notification.tsx", "src/Objects.tsx", "src/Ol.tsx", "src/Palette.tsx", "src/Photo.tsx", "src/Picture.tsx", "src/Places.tsx", "src/Play.tsx", "src/Screenshare.tsx", "src/Search.tsx", "src/Send.tsx", "src/Settings.tsx", "src/Shape.tsx", "src/Stroke.tsx", "src/Task.tsx", "src/Trash.tsx", "src/Text.tsx", "src/Ul.tsx", "src/Underline.tsx", "src/Updates.tsx", "src/Users.tsx"],
2
+ "extends": "@xipkg/typescript/react-library.json",
3
+ "include": [
4
+ "*",
5
+ "src/Account.tsx",
6
+ "src/Activity.tsx",
7
+ "src/ArrowBottom.tsx",
8
+ "src/ArrowLeft.tsx",
9
+ "src/ArrowRight.tsx",
10
+ "src/ArrowUp.tsx",
11
+ "src/Bold.tsx",
12
+ "src/Brush.tsx",
13
+ "src/Burger.tsx",
14
+ "src/Calendar.tsx",
15
+ "src/Camera.tsx",
16
+ "src/Chat.tsx",
17
+ "src/Check.tsx",
18
+ "src/ChevronRight.tsx",
19
+ "src/ChevronBottom.tsx",
20
+ "src/ChevronLeft.tsx",
21
+ "src/ChevronSmallTop.tsx",
22
+ "src/ChevronSmallBottom.tsx",
23
+ "src/ChevronSmallRight.tsx",
24
+ "src/ChevronSmallLeft.tsx",
25
+ "src/ChevronUp.tsx",
26
+ "src/Cite.tsx",
27
+ "src/Clip.tsx",
28
+ "src/Collapse.tsx",
29
+ "src/ColorPicker.tsx",
30
+ "src/Announce.tsx",
31
+ "src/ChannelAdd.tsx",
32
+ "src/CategoryAdd.tsx",
33
+ "src/Add.tsx",
34
+ "src/Clock.tsx",
35
+ "src/Close.tsx",
36
+ "src/Code.tsx",
37
+ "src/Copy.tsx",
38
+ "src/Download.tsx",
39
+ "src/Edit.tsx",
40
+ "src/Emotions.tsx",
41
+ "src/Endcall.tsx",
42
+ "src/Exit.tsx",
43
+ "src/External.tsx",
44
+ "src/Eyeoff.tsx",
45
+ "src/Eyeon.tsx",
46
+ "src/File.tsx",
47
+ "src/FileSmall.tsx",
48
+ "src/Filter.tsx",
49
+ "src/Flag.tsx",
50
+ "src/Folder.tsx",
51
+ "src/Food.tsx",
52
+ "src/Grid.tsx",
53
+ "src/H1.tsx",
54
+ "src/H2.tsx",
55
+ "src/H3.tsx",
56
+ "src/Hand.tsx",
57
+ "src/Heart.tsx",
58
+ "src/Home.tsx",
59
+ "src/Italic.tsx",
60
+ "src/Key.tsx",
61
+ "src/Laptop.tsx",
62
+ "src/Link.tsx",
63
+ "src/Locked.tsx",
64
+ "src/LongAnswer.tsx",
65
+ "src/Mail.tsx",
66
+ "src/Maximize.tsx",
67
+ "src/Microphone.tsx",
68
+ "src/Minimize.tsx",
69
+ "src/Moon.tsx",
70
+ "src/MoreVert.tsx",
71
+ "src/Divider.tsx",
72
+ "src/Move.tsx",
73
+ "src/Movie.tsx",
74
+ "src/Music.tsx",
75
+ "src/Nature.tsx",
76
+ "src/Notification.tsx",
77
+ "src/Objects.tsx",
78
+ "src/Ol.tsx",
79
+ "src/Pallet.tsx",
80
+ "src/PeopleInvite.tsx",
81
+ "src/Photo.tsx",
82
+ "src/Picture.tsx",
83
+ "src/Places.tsx",
84
+ "src/Play.tsx",
85
+ "src/Presentation.tsx",
86
+ "src/PushPin.tsx",
87
+ "src/Reply.tsx",
88
+ "src/Screenshare.tsx",
89
+ "src/Search.tsx",
90
+ "src/Section.tsx",
91
+ "src/Send.tsx",
92
+ "src/Settings.tsx",
93
+ "src/Shape.tsx",
94
+ "src/SimpleAnswer.tsx",
95
+ "src/Sort.tsx",
96
+ "src/Soundoff.tsx",
97
+ "src/SoundOn.tsx",
98
+ "src/Speaker.tsx",
99
+ "src/Stroke.tsx",
100
+ "src/Sun.tsx",
101
+ "src/Task.tsx",
102
+ "src/TaskFile.tsx",
103
+ "src/Trash.tsx",
104
+ "src/Telegram.tsx",
105
+ "src/Text.tsx",
106
+ "src/Ul.tsx",
107
+ "src/Underline.tsx",
108
+ "src/Unlocked.tsx",
109
+ "src/Updates.tsx",
110
+ "src/Upload.tsx",
111
+ "src/Users.tsx",
112
+ "src/VariantSelect.tsx",
113
+ "src/Window.tsx",
114
+ "src/Video.tsx"
115
+ ],
4
116
  "exclude": ["dist", "build", "node_modules"]
5
117
  }
@@ -1,14 +0,0 @@
1
-
2
- > @xipkg/icons@0.0.4 build
3
- > tsup index.ts --format cjs --dts
4
-
5
- CLI Building entry: index.ts
6
- CLI Using tsconfig: tsconfig.json
7
- CLI tsup v6.7.0
8
- CLI Target: es6
9
- CJS Build start
10
- CJS dist\index.js 102.43 KB
11
- CJS ⚡️ Build success in 276ms
12
- DTS Build start
13
- DTS ⚡️ Build success in 6308ms
14
- DTS dist\index.d.ts 6.24 KB