@toptal/picasso-icons 1.8.2-alpha-BILL-5689-fix-reset-button-on-input-e048b5d95.15 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-package/src/Icon/Collapse16.d.ts +11 -0
- package/dist-package/src/Icon/Collapse16.d.ts.map +1 -0
- package/dist-package/src/Icon/Collapse16.js +25 -0
- package/dist-package/src/Icon/Collapse16.js.map +1 -0
- package/dist-package/src/Icon/Collapse24.d.ts +11 -0
- package/dist-package/src/Icon/Collapse24.d.ts.map +1 -0
- package/dist-package/src/Icon/Collapse24.js +25 -0
- package/dist-package/src/Icon/Collapse24.js.map +1 -0
- package/dist-package/src/Icon/CollapseResponsive.d.ts +5 -0
- package/dist-package/src/Icon/CollapseResponsive.d.ts.map +1 -0
- package/dist-package/src/Icon/CollapseResponsive.js +12 -0
- package/dist-package/src/Icon/CollapseResponsive.js.map +1 -0
- package/dist-package/src/Icon/CommandKey16.d.ts +11 -0
- package/dist-package/src/Icon/CommandKey16.d.ts.map +1 -0
- package/dist-package/src/Icon/CommandKey16.js +25 -0
- package/dist-package/src/Icon/CommandKey16.js.map +1 -0
- package/dist-package/src/Icon/CommandKey24.d.ts +11 -0
- package/dist-package/src/Icon/CommandKey24.d.ts.map +1 -0
- package/dist-package/src/Icon/CommandKey24.js +25 -0
- package/dist-package/src/Icon/CommandKey24.js.map +1 -0
- package/dist-package/src/Icon/CommandKeyResponsive.d.ts +5 -0
- package/dist-package/src/Icon/CommandKeyResponsive.d.ts.map +1 -0
- package/dist-package/src/Icon/CommandKeyResponsive.js +12 -0
- package/dist-package/src/Icon/CommandKeyResponsive.js.map +1 -0
- package/dist-package/src/Icon/Expand16.d.ts +11 -0
- package/dist-package/src/Icon/Expand16.d.ts.map +1 -0
- package/dist-package/src/Icon/Expand16.js +25 -0
- package/dist-package/src/Icon/Expand16.js.map +1 -0
- package/dist-package/src/Icon/Expand24.d.ts +11 -0
- package/dist-package/src/Icon/Expand24.d.ts.map +1 -0
- package/dist-package/src/Icon/Expand24.js +25 -0
- package/dist-package/src/Icon/Expand24.js.map +1 -0
- package/dist-package/src/Icon/ExpandResponsive.d.ts +5 -0
- package/dist-package/src/Icon/ExpandResponsive.d.ts.map +1 -0
- package/dist-package/src/Icon/ExpandResponsive.js +12 -0
- package/dist-package/src/Icon/ExpandResponsive.js.map +1 -0
- package/dist-package/src/Icon/index.d.ts +9 -0
- package/dist-package/src/Icon/index.d.ts.map +1 -1
- package/dist-package/src/Icon/index.js +9 -0
- package/dist-package/src/Icon/index.js.map +1 -1
- package/package.json +5 -6
- package/src/Icon/Collapse16.tsx +65 -0
- package/src/Icon/Collapse24.tsx +65 -0
- package/src/Icon/CollapseResponsive.tsx +19 -0
- package/src/Icon/CommandKey16.tsx +65 -0
- package/src/Icon/CommandKey24.tsx +65 -0
- package/src/Icon/CommandKeyResponsive.tsx +19 -0
- package/src/Icon/Expand16.tsx +65 -0
- package/src/Icon/Expand24.tsx +65 -0
- package/src/Icon/ExpandResponsive.tsx +19 -0
- package/src/Icon/index.ts +9 -0
- package/src/Icon/svg/collapse16.svg +1 -0
- package/src/Icon/svg/collapse24.svg +1 -0
- package/src/Icon/svg/commandKey16.svg +1 -0
- package/src/Icon/svg/commandKey24.svg +1 -0
- package/src/Icon/svg/expand16.svg +1 -0
- package/src/Icon/svg/expand24.svg +1 -0
- package/LICENSE +0 -20
| @@ -0,0 +1,65 @@ | |
| 1 | 
            +
            import type { Ref } from 'react'
         | 
| 2 | 
            +
            import React, { forwardRef } from 'react'
         | 
| 3 | 
            +
            import cx from 'classnames'
         | 
| 4 | 
            +
            import { makeStyles } from '@material-ui/core/styles'
         | 
| 5 | 
            +
            import type { StandardProps } from '@toptal/picasso-shared'
         | 
| 6 | 
            +
            import { kebabToCamelCase } from '@toptal/picasso-utils'
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            import styles from './styles'
         | 
| 9 | 
            +
            const BASE_SIZE = 24
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            type ScaleType = 1 | 2 | 3 | 4
         | 
| 12 | 
            +
            export interface Props extends StandardProps {
         | 
| 13 | 
            +
              scale?: ScaleType
         | 
| 14 | 
            +
              color?: string
         | 
| 15 | 
            +
              base?: number
         | 
| 16 | 
            +
            }
         | 
| 17 | 
            +
            const useStyles = makeStyles(styles, {
         | 
| 18 | 
            +
              name: 'PicassoSvgExpand24',
         | 
| 19 | 
            +
            })
         | 
| 20 | 
            +
            const SvgExpand24 = forwardRef(function SvgExpand24(
         | 
| 21 | 
            +
              props: Props,
         | 
| 22 | 
            +
              ref: Ref<SVGSVGElement>
         | 
| 23 | 
            +
            ) {
         | 
| 24 | 
            +
              const {
         | 
| 25 | 
            +
                className,
         | 
| 26 | 
            +
                style = {},
         | 
| 27 | 
            +
                color,
         | 
| 28 | 
            +
                scale,
         | 
| 29 | 
            +
                base,
         | 
| 30 | 
            +
                'data-testid': testId,
         | 
| 31 | 
            +
              } = props
         | 
| 32 | 
            +
              const classes: Record<string, string> = useStyles(props)
         | 
| 33 | 
            +
              const classNames = [classes.root, className]
         | 
| 34 | 
            +
              const scaledSize = base || BASE_SIZE * Math.ceil(scale || 1)
         | 
| 35 | 
            +
              const colorClassName = kebabToCamelCase(`${color}`)
         | 
| 36 | 
            +
             | 
| 37 | 
            +
              if (classes[colorClassName]) {
         | 
| 38 | 
            +
                classNames.push(classes[colorClassName])
         | 
| 39 | 
            +
              }
         | 
| 40 | 
            +
             | 
| 41 | 
            +
              const svgStyle = {
         | 
| 42 | 
            +
                minWidth: `${scaledSize}px`,
         | 
| 43 | 
            +
                minHeight: `${scaledSize}px`,
         | 
| 44 | 
            +
                ...style,
         | 
| 45 | 
            +
              }
         | 
| 46 | 
            +
             | 
| 47 | 
            +
              return (
         | 
| 48 | 
            +
                <svg
         | 
| 49 | 
            +
                  fill='none'
         | 
| 50 | 
            +
                  viewBox='0 0 24 24'
         | 
| 51 | 
            +
                  className={cx(...classNames)}
         | 
| 52 | 
            +
                  style={svgStyle}
         | 
| 53 | 
            +
                  ref={ref}
         | 
| 54 | 
            +
                  data-testid={testId}
         | 
| 55 | 
            +
                >
         | 
| 56 | 
            +
                  <path
         | 
| 57 | 
            +
                    fillRule='evenodd'
         | 
| 58 | 
            +
                    d='M2 5.5V9h1V3.7l2.95 2.95L8.9 9.6l.35-.35.35-.35-2.95-2.95L3.7 3H9V2H2v3.5m13-3V3h5.3l-2.95 2.95L14.4 8.9l.35.35.35.35 2.95-2.95L21 3.7V9h1V2h-7v.5M5.95 17.35 3 20.3V15H2v7h7v-1H3.7l2.95-2.95 2.951-2.951-.351-.349-.351-.349L5.95 17.35m8.8-2.6-.35.35 2.95 2.95L20.3 21H15v1h7v-7h-1v5.3l-2.95-2.95-2.95-2.95-.35.35'
         | 
| 59 | 
            +
                  />
         | 
| 60 | 
            +
                </svg>
         | 
| 61 | 
            +
              )
         | 
| 62 | 
            +
            })
         | 
| 63 | 
            +
             | 
| 64 | 
            +
            SvgExpand24.displayName = 'SvgExpand24'
         | 
| 65 | 
            +
            export default SvgExpand24
         | 
| @@ -0,0 +1,19 @@ | |
| 1 | 
            +
            import { useScreens } from '@toptal/picasso-provider'
         | 
| 2 | 
            +
            import React from 'react'
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            import Expand16 from './Expand16'
         | 
| 5 | 
            +
            import Expand24 from './Expand24'
         | 
| 6 | 
            +
            import type { Props } from './Expand16'
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            const ExpandResponsive = (props: Props) => {
         | 
| 9 | 
            +
              const screens = useScreens()
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              return screens(
         | 
| 12 | 
            +
                {
         | 
| 13 | 
            +
                  xl: <Expand16 {...props} />,
         | 
| 14 | 
            +
                },
         | 
| 15 | 
            +
                <Expand24 {...props} />
         | 
| 16 | 
            +
              ) as JSX.Element
         | 
| 17 | 
            +
            }
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            export default ExpandResponsive
         | 
    
        package/src/Icon/index.ts
    CHANGED
    
    | @@ -98,6 +98,10 @@ export { default as Code16 } from './Code16' | |
| 98 98 | 
             
            export { default as Code24 } from './Code24'
         | 
| 99 99 | 
             
            export { default as CodeBlock16 } from './CodeBlock16'
         | 
| 100 100 | 
             
            export { default as CodeBlock24 } from './CodeBlock24'
         | 
| 101 | 
            +
            export { default as Collapse16 } from './Collapse16'
         | 
| 102 | 
            +
            export { default as Collapse24 } from './Collapse24'
         | 
| 103 | 
            +
            export { default as CommandKey16 } from './CommandKey16'
         | 
| 104 | 
            +
            export { default as CommandKey24 } from './CommandKey24'
         | 
| 101 105 | 
             
            export { default as Commission16 } from './Commission16'
         | 
| 102 106 | 
             
            export { default as Commission24 } from './Commission24'
         | 
| 103 107 | 
             
            export { default as Company16 } from './Company16'
         | 
| @@ -147,6 +151,8 @@ export { default as Exclamation16 } from './Exclamation16' | |
| 147 151 | 
             
            export { default as Exclamation24 } from './Exclamation24'
         | 
| 148 152 | 
             
            export { default as ExclamationSolid16 } from './ExclamationSolid16'
         | 
| 149 153 | 
             
            export { default as ExclamationSolid24 } from './ExclamationSolid24'
         | 
| 154 | 
            +
            export { default as Expand16 } from './Expand16'
         | 
| 155 | 
            +
            export { default as Expand24 } from './Expand24'
         | 
| 150 156 | 
             
            export { default as Eye16 } from './Eye16'
         | 
| 151 157 | 
             
            export { default as Eye24 } from './Eye24'
         | 
| 152 158 | 
             
            export { default as EyeHidden16 } from './EyeHidden16'
         | 
| @@ -487,6 +493,8 @@ export { default as CloseResponsive } from './CloseResponsive' | |
| 487 493 | 
             
            export { default as CloseMinorResponsive } from './CloseMinorResponsive'
         | 
| 488 494 | 
             
            export { default as CodeResponsive } from './CodeResponsive'
         | 
| 489 495 | 
             
            export { default as CodeBlockResponsive } from './CodeBlockResponsive'
         | 
| 496 | 
            +
            export { default as CollapseResponsive } from './CollapseResponsive'
         | 
| 497 | 
            +
            export { default as CommandKeyResponsive } from './CommandKeyResponsive'
         | 
| 490 498 | 
             
            export { default as CommissionResponsive } from './CommissionResponsive'
         | 
| 491 499 | 
             
            export { default as CompanyResponsive } from './CompanyResponsive'
         | 
| 492 500 | 
             
            export { default as ComponentResponsive } from './ComponentResponsive'
         | 
| @@ -511,6 +519,7 @@ export { default as EmployeeResponsive } from './EmployeeResponsive' | |
| 511 519 | 
             
            export { default as EveningResponsive } from './EveningResponsive'
         | 
| 512 520 | 
             
            export { default as ExclamationResponsive } from './ExclamationResponsive'
         | 
| 513 521 | 
             
            export { default as ExclamationSolidResponsive } from './ExclamationSolidResponsive'
         | 
| 522 | 
            +
            export { default as ExpandResponsive } from './ExpandResponsive'
         | 
| 514 523 | 
             
            export { default as EyeResponsive } from './EyeResponsive'
         | 
| 515 524 | 
             
            export { default as EyeHiddenResponsive } from './EyeHiddenResponsive'
         | 
| 516 525 | 
             
            export { default as FacebookResponsive } from './FacebookResponsive'
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.500 1.500 L 1.147 1.853 3.220 3.927 L 5.293 6.000 3.647 6.000 L 2.000 6.000 2.000 6.493 L 2.000 6.987 4.493 6.987 L 6.987 6.987 6.987 4.493 L 6.987 2.000 6.493 2.000 L 6.000 2.000 6.000 3.647 L 6.000 5.293 3.927 3.220 L 1.853 1.147 1.500 1.500 M12.073 3.220 L 10.000 5.293 10.000 3.647 L 10.000 2.000 9.507 2.000 L 9.013 2.000 9.013 4.493 L 9.013 6.987 11.507 6.987 L 14.000 6.987 14.000 6.493 L 14.000 6.000 12.353 6.000 L 10.707 6.000 12.780 3.926 L 14.854 1.853 14.500 1.500 L 14.146 1.147 12.073 3.220 M2.000 9.507 L 2.000 10.000 3.647 10.000 L 5.293 10.000 3.220 12.073 L 1.147 14.147 1.500 14.500 L 1.853 14.853 3.927 12.780 L 6.000 10.707 6.000 12.353 L 6.000 14.000 6.493 14.000 L 6.987 14.000 6.987 11.507 L 6.987 9.013 4.493 9.013 L 2.000 9.013 2.000 9.507 M9.013 11.507 L 9.013 14.000 9.507 14.000 L 10.000 14.000 10.000 12.353 L 10.000 10.707 12.073 12.780 L 14.147 14.853 14.500 14.500 L 14.853 14.147 12.780 12.073 L 10.707 10.000 12.353 10.000 L 14.000 10.000 14.000 9.507 L 14.000 9.013 11.507 9.013 L 9.013 9.013 9.013 11.507 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.750 1.750 L 1.400 2.100 4.850 5.550 L 8.300 9.000 5.650 9.000 L 3.000 9.000 3.000 9.500 L 3.000 10.000 6.500 10.000 L 10.000 10.000 10.000 6.500 L 10.000 3.000 9.500 3.000 L 9.000 3.000 9.000 5.650 L 9.000 8.300 5.550 4.850 L 2.100 1.400 1.750 1.750 M18.450 4.850 L 15.000 8.300 15.000 5.650 L 15.000 3.000 14.500 3.000 L 14.000 3.000 14.000 6.500 L 14.000 10.000 17.500 10.000 L 21.000 10.000 21.000 9.500 L 21.000 9.000 18.350 9.000 L 15.700 9.000 19.150 5.550 L 22.601 2.099 22.250 1.750 L 21.899 1.401 18.450 4.850 M3.000 14.500 L 3.000 15.000 5.650 15.000 L 8.300 15.000 4.850 18.450 L 1.400 21.900 1.750 22.250 L 2.100 22.600 5.550 19.150 L 9.000 15.700 9.000 18.350 L 9.000 21.000 9.500 21.000 L 10.000 21.000 10.000 17.500 L 10.000 14.000 6.500 14.000 L 3.000 14.000 3.000 14.500 M14.000 17.500 L 14.000 21.000 14.500 21.000 L 15.000 21.000 15.000 18.350 L 15.000 15.700 18.450 19.150 L 21.900 22.600 22.250 22.250 L 22.600 21.900 19.150 18.450 L 15.700 15.000 18.350 15.000 L 21.000 15.000 21.000 14.500 L 21.000 14.000 17.500 14.000 L 14.000 14.000 14.000 17.500 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.003 1.055 C 2.061 1.266,1.360 1.931,1.088 2.869 C 1.035 3.050,1.027 3.141,1.027 3.507 C 1.027 3.926,1.028 3.938,1.126 4.240 C 1.371 4.999,1.910 5.566,2.646 5.839 C 3.001 5.971,3.086 5.980,4.073 5.993 L 5.013 6.005 5.013 8.000 L 5.013 9.995 4.073 10.007 C 3.083 10.020,3.002 10.028,2.640 10.163 C 2.001 10.400,1.424 10.954,1.195 11.551 C 1.051 11.928,1.029 12.048,1.028 12.493 C 1.027 12.861,1.035 12.949,1.088 13.131 C 1.299 13.861,1.758 14.417,2.413 14.734 C 2.820 14.932,3.011 14.973,3.507 14.973 C 3.926 14.973,3.938 14.972,4.240 14.874 C 4.999 14.629,5.566 14.090,5.839 13.354 C 5.971 12.999,5.980 12.914,5.993 11.927 L 6.005 10.987 8.000 10.987 L 9.995 10.987 10.007 11.927 C 10.020 12.914,10.029 12.999,10.161 13.354 C 10.434 14.090,11.001 14.629,11.760 14.874 C 12.062 14.972,12.073 14.973,12.493 14.973 C 12.990 14.972,13.183 14.930,13.587 14.734 C 14.242 14.417,14.702 13.860,14.912 13.131 C 14.964 12.951,14.973 12.857,14.973 12.493 C 14.973 12.073,14.972 12.062,14.874 11.760 C 14.629 11.001,14.090 10.434,13.354 10.161 C 12.999 10.029,12.914 10.020,11.927 10.007 L 10.987 9.995 10.987 8.000 L 10.987 6.005 11.927 5.993 C 12.914 5.980,12.999 5.971,13.354 5.839 C 14.090 5.566,14.629 4.999,14.874 4.240 C 14.972 3.938,14.973 3.927,14.973 3.507 C 14.973 3.143,14.964 3.049,14.912 2.869 C 14.702 2.140,14.242 1.583,13.587 1.266 C 13.179 1.068,12.989 1.026,12.493 1.028 C 12.048 1.029,11.928 1.051,11.551 1.195 C 10.954 1.424,10.400 2.001,10.163 2.640 C 10.028 3.002,10.020 3.083,10.007 4.073 L 9.995 5.013 8.000 5.013 L 6.005 5.013 5.993 4.073 C 5.980 3.086,5.971 3.001,5.839 2.646 C 5.568 1.915,4.999 1.372,4.253 1.130 C 3.983 1.042,3.929 1.034,3.573 1.024 C 3.290 1.017,3.138 1.025,3.003 1.055 M3.864 2.041 C 4.365 2.159,4.828 2.619,4.966 3.137 C 4.990 3.230,5.000 3.510,5.000 4.133 L 5.000 5.000 4.133 5.000 C 3.190 5.000,3.138 4.994,2.831 4.846 C 2.606 4.737,2.288 4.427,2.167 4.197 C 1.924 3.737,1.954 3.096,2.238 2.682 C 2.469 2.347,2.828 2.099,3.187 2.027 C 3.364 1.992,3.683 1.998,3.864 2.041 M13.020 2.089 C 13.310 2.199,13.575 2.412,13.762 2.682 C 14.046 3.096,14.076 3.737,13.833 4.197 C 13.712 4.427,13.394 4.737,13.169 4.846 C 12.862 4.994,12.810 5.000,11.867 5.000 L 11.000 5.000 11.000 4.133 C 11.000 3.510,11.010 3.230,11.034 3.137 C 11.170 2.627,11.628 2.166,12.124 2.041 C 12.365 1.979,12.792 2.002,13.020 2.089 M10.000 8.000 L 10.000 10.000 8.000 10.000 L 6.000 10.000 6.000 8.000 L 6.000 6.000 8.000 6.000 L 10.000 6.000 10.000 8.000 M5.000 11.867 C 5.000 12.810,4.994 12.862,4.846 13.169 C 4.737 13.394,4.427 13.712,4.197 13.833 C 3.737 14.076,3.096 14.046,2.682 13.762 C 2.533 13.659,2.341 13.467,2.238 13.318 C 1.956 12.907,1.924 12.260,2.164 11.810 C 2.385 11.396,2.833 11.071,3.263 11.015 C 3.353 11.003,3.781 10.995,4.213 10.997 L 5.000 11.000 5.000 11.867 M12.907 11.045 C 13.173 11.133,13.348 11.241,13.547 11.440 C 13.888 11.781,14.017 12.114,13.992 12.587 C 13.966 13.069,13.733 13.476,13.318 13.762 C 12.904 14.046,12.263 14.076,11.803 13.833 C 11.583 13.717,11.263 13.394,11.162 13.187 C 11.009 12.870,11.006 12.851,10.993 11.926 C 10.987 11.453,10.989 11.047,10.997 11.024 C 11.012 10.986,11.108 10.983,11.900 10.993 C 12.590 11.002,12.813 11.014,12.907 11.045 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.933 2.056 C 3.915 2.251,3.148 2.747,2.600 3.566 C 2.195 4.172,2.028 4.736,2.028 5.500 C 2.028 6.265,2.195 6.828,2.603 7.438 C 3.143 8.246,3.958 8.768,4.950 8.941 C 5.206 8.985,5.627 9.000,6.645 9.000 L 8.000 9.000 8.000 11.997 L 8.000 14.994 6.490 15.010 C 4.863 15.026,4.804 15.033,4.152 15.279 C 3.849 15.393,3.363 15.714,3.069 15.994 C 2.784 16.266,2.402 16.824,2.281 17.146 C 2.080 17.679,2.028 17.958,2.028 18.500 C 2.028 19.265,2.195 19.828,2.603 20.438 C 3.318 21.508,4.633 22.123,5.868 21.967 C 7.470 21.765,8.665 20.631,8.940 19.052 C 8.985 18.794,9.000 18.376,9.000 17.355 L 9.000 16.000 11.997 16.000 L 14.994 16.000 15.010 17.510 C 15.026 19.139,15.033 19.196,15.281 19.854 C 15.407 20.189,15.795 20.748,16.096 21.031 C 16.842 21.728,17.931 22.093,18.887 21.966 C 19.714 21.856,20.394 21.526,20.960 20.960 C 21.530 20.390,21.862 19.700,21.967 18.870 C 22.087 17.917,21.723 16.836,21.031 16.096 C 20.748 15.795,20.189 15.407,19.854 15.281 C 19.196 15.033,19.139 15.026,17.510 15.010 L 16.000 14.994 16.000 11.997 L 16.000 9.000 17.355 9.000 C 18.376 9.000,18.794 8.985,19.052 8.940 C 20.624 8.666,21.753 7.483,21.966 5.885 C 22.092 4.935,21.725 3.838,21.031 3.096 C 20.748 2.795,20.189 2.407,19.854 2.281 C 19.321 2.080,19.042 2.028,18.500 2.028 C 17.736 2.028,17.172 2.195,16.566 2.600 C 15.819 3.100,15.372 3.739,15.109 4.680 C 15.032 4.955,15.024 5.108,15.010 6.490 L 14.994 8.000 11.997 8.000 L 9.000 8.000 9.000 6.645 C 9.000 5.621,8.985 5.207,8.940 4.946 C 8.648 3.270,7.312 2.092,5.620 2.019 C 5.374 2.008,5.109 2.023,4.933 2.056 M6.136 3.079 C 6.580 3.192,6.894 3.374,7.244 3.720 C 7.602 4.074,7.808 4.420,7.920 4.860 C 7.993 5.144,8.000 5.304,8.000 6.586 L 8.000 8.000 6.586 8.000 C 5.310 8.000,5.143 7.992,4.864 7.921 C 4.407 7.804,4.107 7.628,3.739 7.261 C 3.372 6.893,3.196 6.593,3.079 6.136 C 2.926 5.539,3.006 4.844,3.288 4.307 C 3.461 3.981,3.981 3.461,4.308 3.288 C 4.845 3.005,5.538 2.926,6.136 3.079 M19.136 3.079 C 19.306 3.122,19.556 3.217,19.693 3.288 C 20.019 3.461,20.539 3.981,20.712 4.307 C 21.098 5.040,21.091 6.002,20.693 6.716 C 20.505 7.054,20.054 7.505,19.716 7.693 C 19.212 7.974,19.015 8.000,17.414 8.000 L 16.000 8.000 16.000 6.586 C 16.000 5.005,16.025 4.807,16.288 4.307 C 16.461 3.981,16.981 3.461,17.308 3.288 C 17.845 3.005,18.538 2.926,19.136 3.079 M15.000 12.000 L 15.000 15.000 12.000 15.000 L 9.000 15.000 9.000 12.000 L 9.000 9.000 12.000 9.000 L 15.000 9.000 15.000 12.000 M8.000 17.414 C 8.000 19.014,7.974 19.211,7.694 19.716 C 7.507 20.054,7.020 20.538,6.693 20.711 C 5.975 21.091,5.027 21.091,4.307 20.712 C 3.981 20.539,3.461 20.019,3.288 19.693 C 3.006 19.156,2.926 18.461,3.079 17.864 C 3.196 17.407,3.372 17.107,3.739 16.739 C 4.102 16.377,4.405 16.197,4.848 16.081 C 5.108 16.013,5.295 16.004,6.570 16.002 L 8.000 16.000 8.000 17.414 M19.136 16.079 C 19.306 16.122,19.556 16.217,19.693 16.288 C 20.019 16.461,20.539 16.981,20.712 17.307 C 21.098 18.040,21.091 19.000,20.694 19.716 C 20.507 20.054,20.020 20.538,19.693 20.711 C 18.975 21.091,18.027 21.091,17.307 20.712 C 16.981 20.539,16.461 20.019,16.288 19.693 C 16.025 19.193,16.000 18.995,16.000 17.414 L 16.000 16.000 17.414 16.000 C 18.690 16.000,18.857 16.008,19.136 16.079 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.013 3.507 L 1.013 6.000 1.507 6.000 L 2.000 6.000 2.000 4.353 L 2.000 2.707 4.073 4.780 L 6.147 6.853 6.500 6.500 L 6.853 6.147 4.780 4.073 L 2.707 2.000 4.353 2.000 L 6.000 2.000 6.000 1.507 L 6.000 1.013 3.507 1.013 L 1.013 1.013 1.013 3.507 M10.000 1.507 L 10.000 2.000 11.647 2.000 L 13.293 2.000 11.220 4.073 L 9.147 6.147 9.500 6.500 L 9.853 6.853 11.927 4.780 L 14.000 2.707 14.000 4.353 L 14.000 6.000 14.493 6.000 L 14.987 6.000 14.987 3.507 L 14.987 1.013 12.493 1.013 L 10.000 1.013 10.000 1.507 M4.073 11.220 L 2.000 13.293 2.000 11.647 L 2.000 10.000 1.507 10.000 L 1.013 10.000 1.013 12.493 L 1.013 14.987 3.507 14.987 L 6.000 14.987 6.000 14.493 L 6.000 14.000 4.353 14.000 L 2.707 14.000 4.780 11.926 L 6.854 9.853 6.500 9.500 L 6.146 9.147 4.073 11.220 M9.500 9.500 L 9.147 9.853 11.220 11.927 L 13.293 14.000 11.647 14.000 L 10.000 14.000 10.000 14.493 L 10.000 14.987 12.493 14.987 L 14.987 14.987 14.987 12.493 L 14.987 10.000 14.493 10.000 L 14.000 10.000 14.000 11.647 L 14.000 13.293 11.927 11.220 L 9.853 9.147 9.500 9.500 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.000 5.500 L 2.000 9.000 2.500 9.000 L 3.000 9.000 3.000 6.350 L 3.000 3.700 5.950 6.650 L 8.900 9.600 9.250 9.250 L 9.600 8.900 6.650 5.950 L 3.700 3.000 6.350 3.000 L 9.000 3.000 9.000 2.500 L 9.000 2.000 5.500 2.000 L 2.000 2.000 2.000 5.500 M15.000 2.500 L 15.000 3.000 17.650 3.000 L 20.300 3.000 17.350 5.950 L 14.400 8.900 14.750 9.250 L 15.100 9.600 18.050 6.650 L 21.000 3.700 21.000 6.350 L 21.000 9.000 21.500 9.000 L 22.000 9.000 22.000 5.500 L 22.000 2.000 18.500 2.000 L 15.000 2.000 15.000 2.500 M5.950 17.350 L 3.000 20.300 3.000 17.650 L 3.000 15.000 2.500 15.000 L 2.000 15.000 2.000 18.500 L 2.000 22.000 5.500 22.000 L 9.000 22.000 9.000 21.500 L 9.000 21.000 6.350 21.000 L 3.700 21.000 6.650 18.050 L 9.601 15.099 9.250 14.750 L 8.899 14.401 5.950 17.350 M14.750 14.750 L 14.400 15.100 17.350 18.050 L 20.300 21.000 17.650 21.000 L 15.000 21.000 15.000 21.500 L 15.000 22.000 18.500 22.000 L 22.000 22.000 22.000 18.500 L 22.000 15.000 21.500 15.000 L 21.000 15.000 21.000 17.650 L 21.000 20.300 18.050 17.350 L 15.100 14.400 14.750 14.750 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>
         | 
    
        package/LICENSE
    DELETED
    
    | @@ -1,20 +0,0 @@ | |
| 1 | 
            -
            MIT License
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            Copyright (c) 2021-2022 Toptal, LLC
         | 
| 4 | 
            -
             | 
| 5 | 
            -
            Permission is hereby granted, free of charge, to any person obtaining a copy of
         | 
| 6 | 
            -
            this software and associated documentation files (the “Software”), to deal in
         | 
| 7 | 
            -
            the Software without restriction, including without limitation the rights to
         | 
| 8 | 
            -
            use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
         | 
| 9 | 
            -
            the Software, and to permit persons to whom the Software is furnished to do so,
         | 
| 10 | 
            -
            subject to the following conditions:
         | 
| 11 | 
            -
             | 
| 12 | 
            -
            The above copyright notice and this permission notice shall be included in all
         | 
| 13 | 
            -
            copies or substantial portions of the Software.
         | 
| 14 | 
            -
             | 
| 15 | 
            -
            THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         | 
| 16 | 
            -
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
         | 
| 17 | 
            -
            FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
         | 
| 18 | 
            -
            COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
         | 
| 19 | 
            -
            IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
         | 
| 20 | 
            -
            CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         |