polpo 0.1.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/.eslintrc.cjs +9 -0
- package/.storybook/decorators.tsx +61 -0
- package/.storybook/main.ts +47 -0
- package/.storybook/manager-head.html +2 -0
- package/.storybook/manager.ts +7 -0
- package/.storybook/preview-head.html +2 -0
- package/.storybook/preview.ts +38 -0
- package/.storybook/theme.ts +47 -0
- package/.turbo/daemon/f5c5c8fb195b01d0-turbo.log.2024-05-26 +0 -0
- package/.turbo/turbo-build$colon$watch.log +96 -0
- package/.turbo/turbo-build-storybook.log +0 -0
- package/.turbo/turbo-build.log +77 -0
- package/.turbo/turbo-lint$colon$fix.log +2 -0
- package/.turbo/turbo-lint.log +4 -0
- package/README.md +68 -0
- package/dist/chunk-M4KRSYE7.js +3 -0
- package/dist/chunk-M4KRSYE7.js.map +1 -0
- package/dist/chunk-U5XSMSKZ.js +3 -0
- package/dist/chunk-U5XSMSKZ.js.map +1 -0
- package/dist/get-modal-position-DPftPoU2.d.cts +28 -0
- package/dist/get-modal-position-DPftPoU2.d.ts +28 -0
- package/dist/helpers.cjs +3 -0
- package/dist/helpers.cjs.map +1 -0
- package/dist/helpers.d.cts +15 -0
- package/dist/helpers.d.ts +15 -0
- package/dist/helpers.js +3 -0
- package/dist/helpers.js.map +1 -0
- package/dist/hooks.cjs +3 -0
- package/dist/hooks.cjs.map +1 -0
- package/dist/hooks.d.cts +121 -0
- package/dist/hooks.d.ts +121 -0
- package/dist/hooks.js +3 -0
- package/dist/hooks.js.map +1 -0
- package/dist/ui.cjs +1987 -0
- package/dist/ui.cjs.map +1 -0
- package/dist/ui.d.cts +3932 -0
- package/dist/ui.d.ts +3932 -0
- package/dist/ui.js +1987 -0
- package/dist/ui.js.map +1 -0
- package/package.json +98 -0
- package/src/components/accordion/accordion-item.stories.tsx +128 -0
- package/src/components/accordion/accordion-item.tsx +119 -0
- package/src/components/accordion/accordion.stories.tsx +74 -0
- package/src/components/accordion/accordion.style.ts +42 -0
- package/src/components/accordion/accordion.tsx +56 -0
- package/src/components/accordion/index.ts +2 -0
- package/src/components/buttons/button/button.stories.tsx +103 -0
- package/src/components/buttons/button/button.style.ts +147 -0
- package/src/components/buttons/button/button.tsx +119 -0
- package/src/components/buttons/button/index.ts +1 -0
- package/src/components/buttons/index.ts +1 -0
- package/src/components/cards/flip-card/flip-card.stories.tsx +61 -0
- package/src/components/cards/flip-card/flip-card.style.ts +45 -0
- package/src/components/cards/flip-card/flip-card.tsx +55 -0
- package/src/components/cards/flip-card/index.ts +1 -0
- package/src/components/cards/hover-card/hover-card.stories.tsx +45 -0
- package/src/components/cards/hover-card/hover-card.style.ts +13 -0
- package/src/components/cards/hover-card/hover-card.tsx +71 -0
- package/src/components/cards/hover-card/index.ts +1 -0
- package/src/components/cards/index.ts +3 -0
- package/src/components/cards/slide-card/index.ts +1 -0
- package/src/components/cards/slide-card/slide-card.stories.tsx +47 -0
- package/src/components/cards/slide-card/slide-card.tsx +42 -0
- package/src/components/form/checkbox/checkbox.stories.tsx +34 -0
- package/src/components/form/checkbox/checkbox.style.ts +75 -0
- package/src/components/form/checkbox/checkbox.tsx +76 -0
- package/src/components/form/checkbox/index.ts +1 -0
- package/src/components/form/controller/controller.tsx +42 -0
- package/src/components/form/controller/index.ts +1 -0
- package/src/components/form/date-picker/date-picker.stories.tsx +38 -0
- package/src/components/form/date-picker/date-picker.tsx +67 -0
- package/src/components/form/date-picker/index.ts +1 -0
- package/src/components/form/field/field.stories.tsx +49 -0
- package/src/components/form/field/field.style.ts +79 -0
- package/src/components/form/field/field.tsx +83 -0
- package/src/components/form/field/field.types.ts +28 -0
- package/src/components/form/field/index.ts +2 -0
- package/src/components/form/form.stories.types.tsx +50 -0
- package/src/components/form/form.types.ts +37 -0
- package/src/components/form/index.ts +14 -0
- package/src/components/form/input/index.ts +1 -0
- package/src/components/form/input/input.stories.tsx +41 -0
- package/src/components/form/input/input.tsx +73 -0
- package/src/components/form/input-color/index.ts +1 -0
- package/src/components/form/input-color/input-color.stories.tsx +46 -0
- package/src/components/form/input-color/input-color.style.ts +93 -0
- package/src/components/form/input-color/input-color.tsx +159 -0
- package/src/components/form/input-file/index.ts +1 -0
- package/src/components/form/input-file/input-file.stories.tsx +40 -0
- package/src/components/form/input-file/input-file.style.ts +143 -0
- package/src/components/form/input-file/input-file.tsx +214 -0
- package/src/components/form/input-password/index.ts +1 -0
- package/src/components/form/input-password/input-password.stories.tsx +37 -0
- package/src/components/form/input-password/input-password.tsx +83 -0
- package/src/components/form/radio/index.ts +1 -0
- package/src/components/form/radio/radio.stories.tsx +43 -0
- package/src/components/form/radio/radio.style.ts +58 -0
- package/src/components/form/radio/radio.tsx +76 -0
- package/src/components/form/select/index.ts +1 -0
- package/src/components/form/select/options.tsx +140 -0
- package/src/components/form/select/select-option.tsx +84 -0
- package/src/components/form/select/select.stories.tsx +89 -0
- package/src/components/form/select/select.style.ts +164 -0
- package/src/components/form/select/select.tsx +327 -0
- package/src/components/form/select/select.types.ts +93 -0
- package/src/components/form/slider/index.ts +1 -0
- package/src/components/form/slider/slider.stories.tsx +40 -0
- package/src/components/form/slider/slider.style.ts +90 -0
- package/src/components/form/slider/slider.tsx +108 -0
- package/src/components/form/switch/index.ts +1 -0
- package/src/components/form/switch/switch.stories.tsx +38 -0
- package/src/components/form/switch/switch.style.ts +120 -0
- package/src/components/form/switch/switch.tsx +111 -0
- package/src/components/form/textarea/index.ts +1 -0
- package/src/components/form/textarea/textarea.stories.tsx +43 -0
- package/src/components/form/textarea/textarea.style.ts +7 -0
- package/src/components/form/textarea/textarea.tsx +76 -0
- package/src/components/icon/icon.stories.tsx +63 -0
- package/src/components/icon/icon.tsx +64 -0
- package/src/components/icon/icons/index.ts +18 -0
- package/src/components/icon/icons/object.tsx +482 -0
- package/src/components/icon/icons/social.tsx +72 -0
- package/src/components/icon/icons/symbol.tsx +776 -0
- package/src/components/icon/index.ts +5 -0
- package/src/components/image/image.stories.tsx +25 -0
- package/src/components/image/image.tsx +7 -0
- package/src/components/image/index.ts +1 -0
- package/src/components/index.ts +16 -0
- package/src/components/infinity-scroll/index.ts +1 -0
- package/src/components/infinity-scroll/infinity-scroll.stories.tsx +75 -0
- package/src/components/infinity-scroll/infinity-scroll.style.ts +30 -0
- package/src/components/infinity-scroll/infinity-scroll.tsx +56 -0
- package/src/components/line/index.ts +1 -0
- package/src/components/line/line.stories.tsx +67 -0
- package/src/components/line/line.style.ts +57 -0
- package/src/components/line/line.tsx +76 -0
- package/src/components/loaders/index.ts +1 -0
- package/src/components/loaders/simple-loader/index.ts +1 -0
- package/src/components/loaders/simple-loader/simple-loader.stories.tsx +21 -0
- package/src/components/loaders/simple-loader/simple-loader.style.ts +13 -0
- package/src/components/loaders/simple-loader/simple-loader.tsx +15 -0
- package/src/components/modals/action-modal/action-modal.stories.tsx +134 -0
- package/src/components/modals/action-modal/action-modal.style.ts +129 -0
- package/src/components/modals/action-modal/action-modal.tsx +150 -0
- package/src/components/modals/action-modal/index.ts +1 -0
- package/src/components/modals/aside-modal/aside-modal.stories.tsx +82 -0
- package/src/components/modals/aside-modal/aside-modal.style.ts +108 -0
- package/src/components/modals/aside-modal/aside-modal.tsx +66 -0
- package/src/components/modals/aside-modal/index.ts +1 -0
- package/src/components/modals/confirmation-modal/confirmation-modal.stories.tsx +50 -0
- package/src/components/modals/confirmation-modal/confirmation-modal.style.ts +17 -0
- package/src/components/modals/confirmation-modal/confirmation-modal.tsx +43 -0
- package/src/components/modals/confirmation-modal/index.ts +1 -0
- package/src/components/modals/index.ts +4 -0
- package/src/components/modals/modal/index.ts +1 -0
- package/src/components/modals/modal/modal.style.ts +10 -0
- package/src/components/modals/modal/modal.tsx +132 -0
- package/src/components/ripple/index.ts +1 -0
- package/src/components/ripple/ripple.stories.tsx +38 -0
- package/src/components/ripple/ripple.style.ts +33 -0
- package/src/components/ripple/ripple.tsx +63 -0
- package/src/components/smart-table/index.ts +1 -0
- package/src/components/smart-table/smart-table.column.tsx +63 -0
- package/src/components/smart-table/smart-table.helpers.tsx +59 -0
- package/src/components/smart-table/smart-table.hooks.ts +27 -0
- package/src/components/smart-table/smart-table.row.tsx +29 -0
- package/src/components/smart-table/smart-table.stories.tsx +301 -0
- package/src/components/smart-table/smart-table.style.ts +102 -0
- package/src/components/smart-table/smart-table.tsx +112 -0
- package/src/components/smart-table/smart-table.types.ts +41 -0
- package/src/components/tabs/index.ts +1 -0
- package/src/components/tabs/tabs-container.stories.tsx +159 -0
- package/src/components/tabs/tabs-list.tsx +131 -0
- package/src/components/tabs/tabs.stories.tsx +68 -0
- package/src/components/tabs/tabs.style.ts +132 -0
- package/src/components/tabs/tabs.tsx +117 -0
- package/src/components/tag/index.ts +1 -0
- package/src/components/tag/tag.stories.tsx +49 -0
- package/src/components/tag/tag.style.ts +24 -0
- package/src/components/tag/tag.tsx +44 -0
- package/src/components/tooltips/click-to-copy/click-to-copy.stories.tsx +39 -0
- package/src/components/tooltips/click-to-copy/click-to-copy.tsx +41 -0
- package/src/components/tooltips/click-to-copy/index.ts +1 -0
- package/src/components/tooltips/index.ts +2 -0
- package/src/components/tooltips/tooltip/index.ts +1 -0
- package/src/components/tooltips/tooltip/tooltip.stories.tsx +35 -0
- package/src/components/tooltips/tooltip/tooltip.style.ts +62 -0
- package/src/components/tooltips/tooltip/tooltip.tsx +45 -0
- package/src/components/typography/index.ts +2 -0
- package/src/components/typography/typography.constants.ts +43 -0
- package/src/components/typography/typography.stories.tsx +106 -0
- package/src/components/typography/typography.style.ts +76 -0
- package/src/components/typography/typography.tsx +79 -0
- package/src/contexts/fetch-context/fetch-context.tsx +114 -0
- package/src/contexts/fetch-context/index.ts +1 -0
- package/src/contexts/form-context/form-context.tsx +43 -0
- package/src/contexts/form-context/index.ts +1 -0
- package/src/contexts/index.ts +3 -0
- package/src/contexts/theme-context/index.ts +3 -0
- package/src/contexts/theme-context/theme-context.tsx +158 -0
- package/src/contexts/theme-context/theme.animations.ts +180 -0
- package/src/contexts/theme-context/theme.defaults.ts +205 -0
- package/src/contexts/theme-context/theme.style.ts +78 -0
- package/src/contexts/theme-context/themes.ts +96 -0
- package/src/core/http-client.d.ts +11 -0
- package/src/core/http-client.d.ts.map +1 -0
- package/src/core/http-client.ts +47 -0
- package/src/core/index.d.ts +2 -0
- package/src/core/index.d.ts.map +1 -0
- package/src/core/index.ts +1 -0
- package/src/core/variants/color.ts +36 -0
- package/src/core/variants/index.ts +3 -0
- package/src/core/variants/radius.ts +56 -0
- package/src/core/variants/size.ts +44 -0
- package/src/helpers/format-bytes.ts +11 -0
- package/src/helpers/format-dates.ts +11 -0
- package/src/helpers/get-modal-position.ts +66 -0
- package/src/helpers/index.ts +4 -0
- package/src/helpers/text/index.ts +1 -0
- package/src/helpers/text/to-capitalize.ts +17 -0
- package/src/hooks/index.ts +23 -0
- package/src/hooks/use-async.ts +88 -0
- package/src/hooks/use-classnames.ts +13 -0
- package/src/hooks/use-constant.ts +3 -0
- package/src/hooks/use-debounce.ts +15 -0
- package/src/hooks/use-dimensions.ts +22 -0
- package/src/hooks/use-event-listener.ts +71 -0
- package/src/hooks/use-file-reader.ts +69 -0
- package/src/hooks/use-hover.ts +17 -0
- package/src/hooks/use-in-view.ts +20 -0
- package/src/hooks/use-input-handlers.ts +49 -0
- package/src/hooks/use-media-query.ts +25 -0
- package/src/hooks/use-modal-in-container.ts +94 -0
- package/src/hooks/use-mouse-position.ts +16 -0
- package/src/hooks/use-observer.ts +18 -0
- package/src/hooks/use-on-click-outside-ref.ts +17 -0
- package/src/hooks/use-online-status.ts +12 -0
- package/src/hooks/use-render-count.ts +11 -0
- package/src/hooks/use-safe-dispatch.ts +22 -0
- package/src/hooks/use-scroll.ts +31 -0
- package/src/hooks/use-state-history.ts +22 -0
- package/src/hooks/use-toggle-values.ts +14 -0
- package/src/hooks/use-toggle.ts +11 -0
- package/src/hooks/use-viewport.ts +38 -0
- package/src/index.ts +5 -0
- package/src/layouts/flex/flex.tsx +75 -0
- package/src/layouts/flex/index.ts +1 -0
- package/src/layouts/grid/grid.tsx +86 -0
- package/src/layouts/grid/index.ts +1 -0
- package/src/layouts/index.ts +3 -0
- package/src/layouts/section-layout/index.ts +1 -0
- package/src/layouts/section-layout/section-layout.stories.tsx +55 -0
- package/src/layouts/section-layout/section-layout.style.ts +21 -0
- package/src/layouts/section-layout/section-layout.tsx +46 -0
- package/src/stories/GettingStarted.mdx +66 -0
- package/src/types/generics.ts +68 -0
- package/src/types/index.ts +1 -0
- package/svg/Name=airplane, Category=object.svg +3 -0
- package/svg/Name=arrow-circle, Category=symbol.svg +3 -0
- package/svg/Name=arrow-down, Category=symbol.svg +3 -0
- package/svg/Name=arrow-left, Category=symbol.svg +3 -0
- package/svg/Name=arrow-right, Category=symbol.svg +3 -0
- package/svg/Name=arrow-up, Category=symbol.svg +3 -0
- package/svg/Name=bell, Category=object.svg +3 -0
- package/svg/Name=bicycle, Category=object.svg +3 -0
- package/svg/Name=book-open, Category=object.svg +3 -0
- package/svg/Name=book-solid, Category=object.svg +6 -0
- package/svg/Name=box-shadow, Category=symbol.svg +5 -0
- package/svg/Name=calendar, Category=object.svg +3 -0
- package/svg/Name=camera, Category=object.svg +3 -0
- package/svg/Name=caret-down, Category=symbol.svg +3 -0
- package/svg/Name=caret-left, Category=symbol.svg +3 -0
- package/svg/Name=caret-right, Category=symbol.svg +3 -0
- package/svg/Name=caret-up, Category=symbol.svg +3 -0
- package/svg/Name=checkmark, Category=symbol.svg +3 -0
- package/svg/Name=clean-computer, Category=object.svg +10 -0
- package/svg/Name=codepen, Category=social.svg +3 -0
- package/svg/Name=creative, Category=symbol.svg +5 -0
- package/svg/Name=cross, Category=symbol.svg +4 -0
- package/svg/Name=crossed-flags, Category=object.svg +4 -0
- package/svg/Name=cv, Category=symbol.svg +5 -0
- package/svg/Name=design-ui, Category=symbol.svg +9 -0
- package/svg/Name=document, Category=object.svg +3 -0
- package/svg/Name=door-closed, Category=object.svg +3 -0
- package/svg/Name=door-open, Category=object.svg +3 -0
- package/svg/Name=double-caret-down, Category=symbol.svg +4 -0
- package/svg/Name=double-caret-left, Category=symbol.svg +4 -0
- package/svg/Name=double-caret-righ, Category=symbol.svg +4 -0
- package/svg/Name=double-caret-up, Category=symbol.svg +4 -0
- package/svg/Name=download, Category=symbol.svg +5 -0
- package/svg/Name=dropper, Category=object.svg +5 -0
- package/svg/Name=envelope, Category=object.svg +3 -0
- package/svg/Name=exclamation-close, Category=symbol.svg +4 -0
- package/svg/Name=exclamation-open, Category=symbol.svg +4 -0
- package/svg/Name=external-link, Category=symbol.svg +3 -0
- package/svg/Name=eye, Category=object.svg +4 -0
- package/svg/Name=eye-hidden, Category=object.svg +7 -0
- package/svg/Name=facebook, Category=social.svg +3 -0
- package/svg/Name=form, Category=symbol.svg +8 -0
- package/svg/Name=game-control, Category=object.svg +3 -0
- package/svg/Name=gear, Category=object.svg +3 -0
- package/svg/Name=github, Category=social.svg +3 -0
- package/svg/Name=house, Category=object.svg +3 -0
- package/svg/Name=hyphen, Category=symbol.svg +3 -0
- package/svg/Name=info, Category=symbol.svg +3 -0
- package/svg/Name=instagram, Category=social.svg +3 -0
- package/svg/Name=link, Category=symbol.svg +5 -0
- package/svg/Name=linkedin, Category=social.svg +3 -0
- package/svg/Name=magnifying-glass, Category=object.svg +3 -0
- package/svg/Name=message, Category=symbol.svg +4 -0
- package/svg/Name=moon, Category=object.svg +5 -0
- package/svg/Name=order-list, Category=symbol.svg +7 -0
- package/svg/Name=pencil, Category=object.svg +3 -0
- package/svg/Name=pin-location, Category=symbol.svg +3 -0
- package/svg/Name=question-mark-close, Category=symbol.svg +3 -0
- package/svg/Name=question-mark-open, Category=symbol.svg +3 -0
- package/svg/Name=share, Category=symbol.svg +5 -0
- package/svg/Name=spinner, Category=symbol.svg +9 -0
- package/svg/Name=star, Category=object.svg +3 -0
- package/svg/Name=star-empty, Category=object.svg +3 -0
- package/svg/Name=sun, Category=object.svg +11 -0
- package/svg/Name=text-shadow, Category=symbol.svg +4 -0
- package/svg/Name=thinking, Category=symbol.svg +3 -0
- package/svg/Name=trash-can, Category=object.svg +4 -0
- package/svg/Name=upload, Category=symbol.svg +5 -0
- package/svg/Name=user, Category=symbol.svg +4 -0
- package/svg/Name=warning, Category=symbol.svg +5 -0
- package/svg/Name=whatsapp, Category=social.svg +3 -0
- package/svgconfig.json +4 -0
- package/tsconfig.json +14 -0
- package/tsup.config.cjs +21 -0
- package/vite.config.ts +13 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import React, { createElement } from 'react';
|
|
2
|
+
|
|
3
|
+
type GridProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
4
|
+
tag?: keyof React.ReactHTML;
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
className?: string;
|
|
7
|
+
style?: React.CSSProperties;
|
|
8
|
+
flow?: React.CSSProperties['gridAutoFlow'];
|
|
9
|
+
columnSize?: React.CSSProperties['gridAutoColumns'];
|
|
10
|
+
rowSize?: React.CSSProperties['gridAutoRows'];
|
|
11
|
+
column?: React.CSSProperties['gridColumn'];
|
|
12
|
+
row?: React.CSSProperties['gridRow'];
|
|
13
|
+
pc?: React.CSSProperties['placeContent'];
|
|
14
|
+
pi?: React.CSSProperties['placeItems'];
|
|
15
|
+
ps?: React.CSSProperties['placeSelf'];
|
|
16
|
+
jc?: React.CSSProperties['justifyContent'];
|
|
17
|
+
ji?: React.CSSProperties['justifyItems'];
|
|
18
|
+
js?: React.CSSProperties['justifySelf'];
|
|
19
|
+
ac?: React.CSSProperties['alignContent'];
|
|
20
|
+
ai?: React.CSSProperties['alignItems'];
|
|
21
|
+
as?: React.CSSProperties['alignSelf'];
|
|
22
|
+
gtc?: React.CSSProperties['gridTemplateColumns'];
|
|
23
|
+
gtr?: React.CSSProperties['gridTemplateRows'];
|
|
24
|
+
gta?: React.CSSProperties['gridTemplateAreas'];
|
|
25
|
+
gt?: React.CSSProperties['gridTemplate'];
|
|
26
|
+
gap?: React.CSSProperties['gap'];
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export const Grid = ({
|
|
30
|
+
tag = 'section',
|
|
31
|
+
children,
|
|
32
|
+
className,
|
|
33
|
+
style,
|
|
34
|
+
flow,
|
|
35
|
+
columnSize,
|
|
36
|
+
rowSize,
|
|
37
|
+
column,
|
|
38
|
+
row,
|
|
39
|
+
pc,
|
|
40
|
+
pi,
|
|
41
|
+
ps,
|
|
42
|
+
jc,
|
|
43
|
+
ji,
|
|
44
|
+
js,
|
|
45
|
+
ac,
|
|
46
|
+
ai,
|
|
47
|
+
as,
|
|
48
|
+
gtc,
|
|
49
|
+
gtr,
|
|
50
|
+
gta,
|
|
51
|
+
gt,
|
|
52
|
+
gap,
|
|
53
|
+
...props
|
|
54
|
+
}: GridProps) => {
|
|
55
|
+
return createElement(
|
|
56
|
+
tag,
|
|
57
|
+
{
|
|
58
|
+
className,
|
|
59
|
+
...props,
|
|
60
|
+
style: {
|
|
61
|
+
...style,
|
|
62
|
+
...(flow ? { gridAutoFlow: flow } : {}),
|
|
63
|
+
...(columnSize ? { gridAutoColumns: columnSize } : {}),
|
|
64
|
+
...(rowSize ? { gridAutoRows: rowSize } : {}),
|
|
65
|
+
...(column ? { gridColumn: column } : {}),
|
|
66
|
+
...(row ? { gridRow: row } : {}),
|
|
67
|
+
...(pc ? { placeContent: pc } : {}),
|
|
68
|
+
...(pi ? { placeItems: pi } : {}),
|
|
69
|
+
...(ps ? { placeSelf: ps } : {}),
|
|
70
|
+
...(jc ? { justifyContent: jc } : {}),
|
|
71
|
+
...(ji ? { justifyItems: ji } : {}),
|
|
72
|
+
...(js ? { justifySelf: js } : {}),
|
|
73
|
+
...(ac ? { alignContent: ac } : {}),
|
|
74
|
+
...(ai ? { alignItems: ai } : {}),
|
|
75
|
+
...(as ? { alignSelf: as } : {}),
|
|
76
|
+
...(gtc ? { gridTemplateColumns: gtc } : {}),
|
|
77
|
+
...(gtr ? { gridTemplateRows: gtr } : {}),
|
|
78
|
+
...(gta ? { gridTemplateAreas: gta } : {}),
|
|
79
|
+
...(gt ? { gridTemplate: gt } : {}),
|
|
80
|
+
...(gap ? { gap: gap } : {}),
|
|
81
|
+
display: 'grid',
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
children,
|
|
85
|
+
);
|
|
86
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './grid';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './section-layout';
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { useTheme } from 'styled-components';
|
|
2
|
+
|
|
3
|
+
import { Typography } from '../../components';
|
|
4
|
+
import { Grid } from '../grid';
|
|
5
|
+
|
|
6
|
+
import { SectionLayout } from './section-layout';
|
|
7
|
+
|
|
8
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
9
|
+
|
|
10
|
+
const meta: Meta<typeof SectionLayout> = {
|
|
11
|
+
title: 'Section',
|
|
12
|
+
component: SectionLayout,
|
|
13
|
+
parameters: {
|
|
14
|
+
layout: 'fullscreen',
|
|
15
|
+
},
|
|
16
|
+
globals: {
|
|
17
|
+
outline: true,
|
|
18
|
+
},
|
|
19
|
+
argTypes: {
|
|
20
|
+
children: { control: false },
|
|
21
|
+
className: { control: false },
|
|
22
|
+
contentClassName: { control: false },
|
|
23
|
+
style: { control: false },
|
|
24
|
+
padding: { control: 'text' },
|
|
25
|
+
fitHeightContent: { control: 'boolean' },
|
|
26
|
+
alignContent: { control: 'inline-radio', options: ['start', 'center', 'end', 'space-between'] },
|
|
27
|
+
},
|
|
28
|
+
args: {
|
|
29
|
+
children: 'Hello world',
|
|
30
|
+
},
|
|
31
|
+
render: args => {
|
|
32
|
+
const theme = useTheme();
|
|
33
|
+
|
|
34
|
+
return (
|
|
35
|
+
<SectionLayout {...args}>
|
|
36
|
+
<Grid jc='center'>
|
|
37
|
+
<Typography variant='header1'>Section layout</Typography>
|
|
38
|
+
<Typography>Create a section with the min-height and min-width defined in the custom theme</Typography>
|
|
39
|
+
<Typography family='code'>
|
|
40
|
+
min-height: {args.fitHeightContent ? 'auto' : theme.constants.sectionMinHeight}
|
|
41
|
+
</Typography>
|
|
42
|
+
<Typography family='code'>max-width: {theme.constants.breakpoints.laptopL}</Typography>
|
|
43
|
+
<Typography variant='label'>(The Storybook outlines are enabled to see the grid)</Typography>
|
|
44
|
+
</Grid>
|
|
45
|
+
</SectionLayout>
|
|
46
|
+
);
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export default meta;
|
|
51
|
+
type Story = StoryObj<typeof SectionLayout>;
|
|
52
|
+
|
|
53
|
+
export const Default: Story = {
|
|
54
|
+
args: {},
|
|
55
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { styled } from 'styled-components';
|
|
2
|
+
|
|
3
|
+
type SectionLayoutStyleProps = {
|
|
4
|
+
$padding: string;
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export const SectionLayoutStyle = styled.section<SectionLayoutStyleProps>`
|
|
8
|
+
display: grid;
|
|
9
|
+
padding: ${props => props.$padding};
|
|
10
|
+
`;
|
|
11
|
+
|
|
12
|
+
export const SectionLayoutContentStyle = styled.section`
|
|
13
|
+
max-width: ${props => props.theme.constants.breakpoints.laptopL};
|
|
14
|
+
width: 100%;
|
|
15
|
+
margin: 0 auto;
|
|
16
|
+
|
|
17
|
+
&.section-layout-min-height {
|
|
18
|
+
min-height: ${props => props.theme.constants.sectionMinHeight};
|
|
19
|
+
display: grid;
|
|
20
|
+
}
|
|
21
|
+
`;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ForwardedRef, forwardRef } from 'react';
|
|
2
|
+
|
|
3
|
+
import { SectionLayoutContentStyle, SectionLayoutStyle } from './section-layout.style';
|
|
4
|
+
|
|
5
|
+
import { useClassNames } from '@polpo/hooks';
|
|
6
|
+
|
|
7
|
+
type SectionLayoutProps = {
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
className?: string;
|
|
10
|
+
contentClassName?: string;
|
|
11
|
+
style?: React.CSSProperties;
|
|
12
|
+
padding?: string;
|
|
13
|
+
fitHeightContent?: boolean;
|
|
14
|
+
alignContent?: React.CSSProperties['alignContent'];
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
const SectionLayoutComponent = (
|
|
18
|
+
{
|
|
19
|
+
children,
|
|
20
|
+
className = '',
|
|
21
|
+
contentClassName = '',
|
|
22
|
+
style = {},
|
|
23
|
+
padding = '0 2em',
|
|
24
|
+
fitHeightContent = false,
|
|
25
|
+
alignContent = 'center',
|
|
26
|
+
}: SectionLayoutProps,
|
|
27
|
+
ref: ForwardedRef<HTMLDivElement>,
|
|
28
|
+
) => {
|
|
29
|
+
const sectionLayoutContentClassName = useClassNames({
|
|
30
|
+
[contentClassName]: Boolean(contentClassName),
|
|
31
|
+
'section-layout-min-height': !fitHeightContent,
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
return (
|
|
35
|
+
<SectionLayoutStyle ref={ref} className={className} style={style} $padding={padding}>
|
|
36
|
+
<SectionLayoutContentStyle
|
|
37
|
+
className={sectionLayoutContentClassName}
|
|
38
|
+
style={{ alignContent: (!fitHeightContent && alignContent) || undefined }}
|
|
39
|
+
>
|
|
40
|
+
{children}
|
|
41
|
+
</SectionLayoutContentStyle>
|
|
42
|
+
</SectionLayoutStyle>
|
|
43
|
+
);
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export const SectionLayout = forwardRef(SectionLayoutComponent);
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Meta } from "@storybook/blocks";
|
|
2
|
+
|
|
3
|
+
<Meta title="Getting Started" />
|
|
4
|
+
|
|
5
|
+
# Polpo UI
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/polpo)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## Description
|
|
11
|
+
|
|
12
|
+
`polpo` is a lightweight and customizable UI component library designed for React applications. This library provides a set of reusable components to speed up development and maintain a consistent user interface across your projects.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
|
|
17
|
+
- Easy to use and integrate with React projects
|
|
18
|
+
- Fully customizable with minimal configuration
|
|
19
|
+
- Modern UI components for building responsive and accessible interfaces
|
|
20
|
+
- Lightweight and fast
|
|
21
|
+
- Built with TypeScript for type safety and autocompletion
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## Installation
|
|
25
|
+
|
|
26
|
+
You can install the package via npm:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npm install polpo
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Or with yarn:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
yarn add polpo
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## Usage
|
|
40
|
+
|
|
41
|
+
Here’s a basic example to get started:
|
|
42
|
+
|
|
43
|
+
```jsx
|
|
44
|
+
import React from 'react';
|
|
45
|
+
import { Button, ThemeProvider } from 'polpo/ui';
|
|
46
|
+
|
|
47
|
+
function App() {
|
|
48
|
+
return (
|
|
49
|
+
<ThemeProvider>
|
|
50
|
+
<Button variant="primary">Click me</Button>
|
|
51
|
+
</ThemeProvider>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export default App;
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## License
|
|
59
|
+
|
|
60
|
+
This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.
|
|
61
|
+
|
|
62
|
+
## Author
|
|
63
|
+
|
|
64
|
+
Developed by [Juan Manuel Sánchez Lozano](https://juanmsl.com).
|
|
65
|
+
|
|
66
|
+
For more information, check out the [npm package page](https://www.npmjs.com/package/polpo).
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/*
|
|
2
|
+
*KeyValuesOf
|
|
3
|
+
*
|
|
4
|
+
*Description:
|
|
5
|
+
* This generic type extract specific attributes from an object type, this is
|
|
6
|
+
* useful when you are creating a component with a generic type, and then you
|
|
7
|
+
* want to add a prop that only could receive specific attributes from that
|
|
8
|
+
* generic object.
|
|
9
|
+
*
|
|
10
|
+
* Example:
|
|
11
|
+
* - select.tsx
|
|
12
|
+
*
|
|
13
|
+
* type SelectProps<T> = {
|
|
14
|
+
* options: Array<T>;
|
|
15
|
+
* renderAttribute: KeyValuesOf<T, string>; // <---- Only allow string attributes from T
|
|
16
|
+
* }
|
|
17
|
+
*
|
|
18
|
+
* const Select = <T,>(props: SelectProps<T>) => { ... }
|
|
19
|
+
*
|
|
20
|
+
* - user.entities.ts
|
|
21
|
+
*
|
|
22
|
+
* type UserProfileEntity = {
|
|
23
|
+
* picture: string;
|
|
24
|
+
* website: string;
|
|
25
|
+
* };
|
|
26
|
+
*
|
|
27
|
+
* type UserEntity = {
|
|
28
|
+
* name: string;
|
|
29
|
+
* lastname: string;
|
|
30
|
+
* age: number;
|
|
31
|
+
* profile: UserProfileEntity;
|
|
32
|
+
* }
|
|
33
|
+
*
|
|
34
|
+
* - page.tsx
|
|
35
|
+
*
|
|
36
|
+
* import { Select } from './components';
|
|
37
|
+
* import { UserEntity } from './user.entities';
|
|
38
|
+
*
|
|
39
|
+
* <Select<UserEntity>
|
|
40
|
+
* options={options}
|
|
41
|
+
* renderAttribute='name' // <---- Only allow 'name | lastname'
|
|
42
|
+
* />
|
|
43
|
+
*
|
|
44
|
+
*Params:
|
|
45
|
+
* T: Object or map Type with keys
|
|
46
|
+
* V: Type to extract from T
|
|
47
|
+
*
|
|
48
|
+
*Example:
|
|
49
|
+
* Input: KeyValuesOf<UserEntity, string>
|
|
50
|
+
* Output: name | lastname
|
|
51
|
+
*
|
|
52
|
+
* Input: KeyValuesOf<UserEntity, number>
|
|
53
|
+
* Output: age
|
|
54
|
+
*
|
|
55
|
+
* Input: KeyValuesOf<UserEntity, string | number>
|
|
56
|
+
* Output: name | lastname | age
|
|
57
|
+
*
|
|
58
|
+
* Input: KeyValuesOf<UserEntity, UserProfileEntity>
|
|
59
|
+
* Output: profile
|
|
60
|
+
*
|
|
61
|
+
*/
|
|
62
|
+
export type KeyValuesOf<T, V> = {
|
|
63
|
+
[P in keyof T]-?: T[P] extends V ? P : never;
|
|
64
|
+
}[keyof T];
|
|
65
|
+
|
|
66
|
+
export type DeepPartial<T> = {
|
|
67
|
+
[P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];
|
|
68
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './generics';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M26.6666 12.5H20.3172L14.4783 2.44078C14.4004 2.30686 14.288 2.19556 14.1524 2.11815C14.0168 2.04075 13.8628 1.99999 13.706 2L10.0671 2C9.47656 2 9.05045 2.55617 9.21267 3.11508L11.9366 12.5H6.2221L3.82209 9.35C3.65431 9.12961 3.39042 9 3.11098 9H0.889301C0.310965 9 -0.113481 9.53484 0.027075 10.0872L1.77764 16L0.027075 21.9128C-0.113481 22.4652 0.310965 23 0.889301 23H3.11098C3.39098 23 3.65431 22.8704 3.82209 22.65L6.2221 19.5H11.9366L9.21267 28.8844C9.05045 29.4433 9.47656 30 10.0671 30H13.706C14.0249 30 14.3194 29.8316 14.4777 29.5592L20.3172 19.5H26.6666C28.6305 19.5 32 17.9332 32 16C32 14.0668 28.6305 12.5 26.6666 12.5Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M29.1727 12.4465H21.3328C20.3509 12.4465 19.5549 11.6507 19.5549 10.669C19.5549 9.68737 20.3509 8.89157 21.3328 8.89157H26.2611C23.3644 4.68755 18.0648 2.62897 12.9 3.95303C10.7122 4.51576 8.71893 5.66323 7.13381 7.2724C5.54856 8.88171 4.43138 10.8921 3.90209 13.0879C3.37281 15.2838 3.45139 17.5823 4.1294 19.7369C4.80741 21.8914 6.05928 23.8209 7.75074 25.3182C9.44221 26.8156 11.5095 27.8243 13.7308 28.2363C15.9521 28.6483 18.2437 28.448 20.3598 27.6569C22.476 26.8658 24.3368 25.5137 25.7427 23.7456C27.1486 21.9775 28.0466 19.8602 28.3403 17.6207C28.468 16.6473 29.3607 15.9618 30.3343 16.0894C31.3078 16.217 31.9936 17.1096 31.8659 18.0829C31.4882 20.9623 30.3337 23.6846 28.5261 25.9578C26.7184 28.2311 24.326 29.9695 21.6053 30.9866C18.8845 32.0038 15.9382 32.2613 13.0822 31.7316C10.2262 31.2019 7.5683 29.9049 5.39357 27.9797C3.21883 26.0546 1.60928 23.5739 0.737553 20.8037C-0.134176 18.0335 -0.235205 15.0783 0.445302 12.2551C1.12581 9.43188 2.56218 6.8471 4.60037 4.77798C6.63856 2.70887 9.20167 1.23347 12.0148 0.510031C18.2072 -1.0778 24.5908 1.13255 28.4443 5.87767V1.78173C28.4443 0.800068 29.2402 0.00427155 30.2221 0.00427155C31.204 0.00427155 32 0.800068 32 1.78173V10.669C32 11.6507 31.204 12.4465 30.2221 12.4465H29.2567C29.2287 12.4472 29.2007 12.4472 29.1727 12.4465Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M26.5704 21.4719C27.1432 22.0749 27.1432 23.0526 26.5704 23.6556L17.0371 31.5477C16.4643 32.1508 15.5357 32.1508 14.9629 31.5477L5.42958 23.6556C4.85681 23.0526 4.85681 22.0749 5.42958 21.4719C6.00235 20.8689 6.93099 20.8689 7.50376 21.4719L14.625 27.1716V1.37254C14.625 1.00852 14.7699 0.659411 15.0277 0.402009C15.5647 -0.134003 16.4353 -0.134003 16.9723 0.402009C17.2301 0.659411 17.375 1.00852 17.375 1.37254L17.375 27.1716L24.4962 21.4719C25.069 20.8689 25.9977 20.8689 26.5704 21.4719Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.5281 26.5704C9.92508 27.1432 8.94741 27.1432 8.34439 26.5704L0.452259 17.0371C-0.150753 16.4643 -0.150753 15.5357 0.452259 14.9629L8.34439 5.42958C8.94741 4.85681 9.92508 4.85681 10.5281 5.42958C11.1311 6.00235 11.1311 6.93099 10.5281 7.50376L4.82835 14.625H30.6275C30.9915 14.625 31.3406 14.7699 31.598 15.0277C32.134 15.5647 32.134 16.4353 31.598 16.9723C31.3406 17.2301 30.9915 17.375 30.6275 17.375L4.82835 17.375L10.5281 24.4962C11.1311 25.069 11.1311 25.9977 10.5281 26.5704Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M21.4719 5.42958C22.0749 4.85681 23.0526 4.85681 23.6556 5.42958L31.5477 14.9629C32.1508 15.5357 32.1508 16.4643 31.5477 17.0371L23.6556 26.5704C23.0526 27.1432 22.0749 27.1432 21.4719 26.5704C20.8689 25.9977 20.8689 25.069 21.4719 24.4962L27.1716 17.375H1.37254C1.00852 17.375 0.659411 17.2301 0.402009 16.9723C-0.134003 16.4353 -0.134003 15.5647 0.402009 15.0277C0.659411 14.7699 1.00852 14.625 1.37254 14.625L27.1716 14.625L21.4719 7.50376C20.8689 6.93099 20.8689 6.00235 21.4719 5.42958Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.42958 10.5281C4.85681 9.92508 4.85681 8.94741 5.42958 8.34439L14.9629 0.452259C15.5357 -0.150753 16.4643 -0.150753 17.0371 0.452259L26.5704 8.34439C27.1432 8.94741 27.1432 9.92508 26.5704 10.5281C25.9977 11.1311 25.069 11.1311 24.4962 10.5281L17.375 4.82835V30.6275C17.375 30.9915 17.2301 31.3406 16.9723 31.598C16.4353 32.134 15.5647 32.134 15.0277 31.598C14.7699 31.3406 14.625 30.9915 14.625 30.6275L14.625 4.82835L7.50376 10.5281C6.93099 11.1311 6.00235 11.1311 5.42958 10.5281Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16 32C18.2075 32 19.9981 30.2094 19.9981 28H12.0019C12.0019 30.2094 13.7925 32 16 32ZM29.4618 22.6431C28.2543 21.3456 25.995 19.3937 25.995 13C25.995 8.14375 22.59 4.25625 17.9987 3.3025V2C17.9987 0.895625 17.1037 0 16 0C14.8963 0 14.0013 0.895625 14.0013 2V3.3025C9.41002 4.25625 6.00503 8.14375 6.00503 13C6.00503 19.3937 3.74566 21.3456 2.53817 22.6431C2.16317 23.0462 1.99692 23.5281 2.00004 24C2.00692 25.025 2.81129 26 4.00629 26H27.9937C29.1887 26 29.9937 25.025 30 24C30.0031 23.5281 29.8368 23.0456 29.4618 22.6431Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M20 7.875C20.4747 7.875 20.9387 7.73204 21.3334 7.46421C21.728 7.19637 22.0357 6.81569 22.2173 6.37029C22.399 5.9249 22.4465 5.4348 22.3539 4.96197C22.2613 4.48914 22.0327 4.05482 21.6971 3.71393C21.3614 3.37304 20.9338 3.14089 20.4682 3.04684C20.0027 2.95279 19.5201 3.00106 19.0816 3.18554C18.643 3.37003 18.2682 3.68245 18.0045 4.0833C17.7408 4.48414 17.6 4.95541 17.6 5.4375C17.6 6.08397 17.8529 6.70395 18.3029 7.16107C18.753 7.61819 19.3635 7.875 20 7.875ZM19.8 14.0195C20.0837 14.2503 20.4365 14.3757 20.8 14.375H24C24.4243 14.375 24.8313 14.2038 25.1314 13.899C25.4314 13.5943 25.6 13.181 25.6 12.75C25.6 12.319 25.4314 11.9057 25.1314 11.601C24.8313 11.2962 24.4243 11.125 24 11.125H21.361L17.8 8.23047C17.5094 7.99349 17.1463 7.86722 16.7736 7.87353C16.401 7.87983 16.0422 8.01832 15.7595 8.265L10.1595 13.14C9.97193 13.3033 9.82415 13.5086 9.72775 13.7396C9.63134 13.9707 9.58894 14.2213 9.60386 14.4718C9.61878 14.7222 9.69061 14.9658 9.81373 15.1834C9.93685 15.4009 10.1079 15.5866 10.3135 15.7258L14.4 18.4944V24.125C14.4 24.556 14.5686 24.9693 14.8686 25.274C15.1687 25.5788 15.5757 25.75 16 25.75C16.4243 25.75 16.8313 25.5788 17.1314 25.274C17.4314 24.9693 17.6 24.556 17.6 24.125V17.625C17.6 17.3575 17.5349 17.0942 17.4106 16.8584C17.2863 16.6226 17.1066 16.4216 16.8875 16.2732L14.8195 14.8732L17.732 12.3382L19.8 14.0195ZM25.6 16C24.3342 16 23.0968 16.3812 22.0444 17.0954C20.9919 17.8097 20.1716 18.8248 19.6872 20.0126C19.2028 21.2003 19.076 22.5072 19.323 23.7681C19.5699 25.029 20.1795 26.1872 21.0745 27.0962C21.9696 28.0052 23.1099 28.6243 24.3514 28.8751C25.5929 29.1259 26.8797 28.9972 28.0492 28.5052C29.2186 28.0132 30.2182 27.1801 30.9214 26.1112C31.6246 25.0423 32 23.7856 32 22.5C32 20.7761 31.3257 19.1228 30.1255 17.9038C28.9253 16.6848 27.2974 16 25.6 16ZM25.6 25.75C24.9671 25.75 24.3484 25.5594 23.8222 25.2023C23.2959 24.8452 22.8858 24.3376 22.6436 23.7437C22.4014 23.1499 22.338 22.4964 22.4615 21.866C22.585 21.2355 22.8897 20.6564 23.3373 20.2019C23.7848 19.7474 24.355 19.4378 24.9757 19.3124C25.5965 19.187 26.2399 19.2514 26.8246 19.4974C27.4093 19.7434 27.9091 20.1599 28.2607 20.6944C28.6123 21.2289 28.8 21.8572 28.8 22.5C28.8 23.362 28.4629 24.1886 27.8627 24.7981C27.2626 25.4076 26.4487 25.75 25.6 25.75ZM6.4 16C5.1342 16 3.89683 16.3812 2.84435 17.0954C1.79188 17.8097 0.971575 18.8248 0.487174 20.0126C0.002773 21.2003 -0.123968 22.5072 0.122977 23.7681C0.369922 25.029 0.979463 26.1872 1.87452 27.0962C2.76958 28.0052 3.90995 28.6243 5.15142 28.8751C6.3929 29.1259 7.67973 28.9972 8.84918 28.5052C10.0186 28.0132 11.0182 27.1801 11.7214 26.1112C12.4246 25.0423 12.8 23.7856 12.8 22.5C12.8 20.7761 12.1257 19.1228 10.9255 17.9038C9.72525 16.6848 8.09739 16 6.4 16ZM6.4 25.75C5.7671 25.75 5.14842 25.5594 4.62218 25.2023C4.09594 24.8452 3.68579 24.3376 3.44359 23.7437C3.20139 23.1499 3.13802 22.4964 3.26149 21.866C3.38496 21.2355 3.68973 20.6564 4.13726 20.2019C4.58479 19.7474 5.15497 19.4378 5.77571 19.3124C6.39645 19.187 7.03987 19.2514 7.62459 19.4974C8.20931 19.7434 8.70908 20.1599 9.06071 20.6944C9.41233 21.2289 9.6 21.8572 9.6 22.5C9.6 23.362 9.26286 24.1886 8.66274 24.7981C8.06263 25.4076 7.2487 25.75 6.4 25.75Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.5 0L9.15013 0.206711C11.0887 0.823088 12.604 1.51964 13.7962 2.94545C14.8875 4.25058 15.6671 6.11769 16.3293 8.95891C18.2596 7.70559 19.8686 6.85023 21.5117 6.27542C23.3268 5.64046 25.1577 5.35681 27.4739 5.23435L28 5.20653V8.87508C28.8084 9.07681 29.4361 9.30333 29.9111 9.99646L30 10.1262V10.2839H30.5C31.3284 10.2839 32 10.9622 32 11.799V30.4849C32 31.3217 31.3284 32 30.5 32H17.8085C17.5027 32 17.2168 31.9036 16.9773 31.7531C16.5446 31.4813 16.2502 31.3811 15.9958 31.3773C15.7466 31.3736 15.4584 31.4616 15.0376 31.7351C14.7933 31.8939 14.4973 32 14.177 32H1.5C0.671573 32 0 31.3217 0 30.4849V28.4648C0 28.1859 0.223858 27.9598 0.5 27.9598C0.776142 27.9598 1 28.1859 1 28.4648V30.4849C1 30.7638 1.22386 30.99 1.5 30.99H14.177C14.2767 30.99 14.3877 30.9565 14.4965 30.8857C15.0029 30.5566 15.487 30.3596 16.0106 30.3674C16.5292 30.3751 17.0083 30.5831 17.5054 30.8954C17.6071 30.9593 17.7123 30.99 17.8085 30.99H30.5C30.7761 30.99 31 30.7638 31 30.4849V11.799C31 11.5201 30.7761 11.294 30.5 11.294H30V28.4648C30 29.3016 29.3284 29.9799 28.5 29.9799H3.5C2.67157 29.9799 2 29.3016 2 28.4648V11.294H1.5C1.22386 11.294 1 11.5201 1 11.799V25.4347C1 25.7136 0.776142 25.9397 0.5 25.9397C0.223858 25.9397 0 25.7136 0 25.4347V11.799C0 10.9622 0.671573 10.2839 1.5 10.2839H2V9.52903L2.19664 9.37744C2.8073 8.90666 3.31649 8.62331 3.85021 8.46243C4.22769 8.34864 4.60058 8.30167 5 8.28013V1.43762L8.5 2.95269V0ZM8.5 4.0516L6 2.9694V20.5264C8.79573 21.4883 10.7698 22.4867 12.351 23.8163C13.4169 24.7126 14.2898 25.7473 15.1132 26.9937C14.837 25.6223 14.4608 24.4942 13.8604 23.4967C12.9323 21.9551 11.4319 20.6685 8.77554 19.3206L8.5 19.1808V4.0516ZM14.6703 28.1654C13.7623 26.6887 12.8488 25.5491 11.7112 24.5926C10.2022 23.3236 8.26422 22.3479 5.34254 21.3688L5 21.254V9.29193C4.66997 9.312 4.39995 9.35079 4.13619 9.4303C3.80189 9.53107 3.45222 9.70557 3 10.0332V27.7104C5.52382 26.6955 7.55847 26.2898 9.54636 26.4783C11.2348 26.6384 12.852 27.2242 14.6703 28.1654ZM3.09497 28.761C3.18583 28.8875 3.3334 28.9698 3.5 28.9698H14.0298C12.3551 28.1197 10.9182 27.6229 9.45288 27.4839C7.61109 27.3092 5.66897 27.6953 3.09497 28.761ZM18.468 28.9698H28.5C28.6752 28.9698 28.8293 28.8789 28.9186 28.7411C26.749 27.7071 24.9679 27.4107 23.1102 27.6299C21.6943 27.7969 20.217 28.2644 18.468 28.9698ZM29 27.6676V10.4532C28.7871 10.1973 28.5206 10.065 28 9.9201V10.7889C28 11.0679 27.7761 11.294 27.5 11.294C27.2239 11.294 27 11.0679 27 10.7889V6.27432C24.9922 6.40783 23.4012 6.68335 21.839 7.22985C20.1984 7.80377 18.5656 8.68487 16.5 10.0511V28.4089C17.8113 27.3443 19.011 26.4884 20.4744 25.8454C22.1487 25.1097 24.1375 24.665 27 24.4571V14.3241C27 14.0452 27.2239 13.8191 27.5 13.8191C27.7761 13.8191 28 14.0452 28 14.3241V25.4047L27.5305 25.4337C24.4779 25.6222 22.4915 26.0605 20.8734 26.7716C20.3722 26.9918 19.9032 27.2394 19.4455 27.5173C20.6983 27.0715 21.8574 26.7607 22.9942 26.6266C24.9629 26.3944 26.8372 26.6936 29 27.6676ZM15.5 24.6267V9.83316C14.8157 6.66392 14.0451 4.80856 13.0322 3.59716C12.1461 2.53733 11.0379 1.92643 9.5 1.38679V18.5598C12.0834 19.9063 13.6881 21.2665 14.7148 22.972C15.029 23.494 15.2859 24.0433 15.5 24.6267Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8.81334L1.54839 8.81333V22.2586L1.55575 22.3175C1.6373 22.9698 1.80274 23.6613 2.34507 24.2101C2.87595 24.7474 3.61726 24.9951 4.44153 25.1544C7.00042 25.649 8.83515 26.0279 10.4781 26.6795C11.0242 26.8961 11.553 27.1447 12.081 27.4416C8.14982 26.9177 5.10427 27.1003 1.39975 27.9669C0.66342 28.1391 0 27.6148 0 26.9703V8.81334Z" fill="white"/>
|
|
3
|
+
<path d="M30.5039 27.85C26.766 26.9204 23.6686 26.9208 19.8056 27.4747C20.3871 27.1096 20.9603 26.8046 21.5526 26.545C23.1338 25.8521 24.9186 25.4541 27.4747 25.1672C28.287 25.076 29.0471 24.8614 29.6064 24.302C30.1555 23.7527 30.347 23.0315 30.4429 22.328L30.4516 22.2639V8.81332H32V26.8337C32 27.4881 31.2963 28.047 30.5039 27.85Z" fill="white"/>
|
|
4
|
+
<path d="M20.6958 24.7408C19.4202 25.2997 18.254 26.0256 17.0323 26.9697V8.26599C19.2745 6.36204 21.0465 5.21044 22.7369 4.59089C24.2397 4.04008 25.7374 3.88858 27.5361 4.07728C28.027 4.12879 28.3871 4.55248 28.3871 5.04611V22.132C28.3069 22.6739 28.193 22.8527 28.1174 22.9283C28.0491 22.9966 27.8652 23.1267 27.235 23.1975C24.5788 23.4957 22.5546 23.9262 20.6958 24.7408Z" fill="white"/>
|
|
5
|
+
<path d="M11.266 24.8466C12.5551 25.3578 13.7438 26.0183 14.9677 26.9449V8.26599C12.7255 6.36204 10.9535 5.21044 9.26314 4.59089C7.76032 4.04008 6.26263 3.88858 4.46393 4.07728C3.973 4.12879 3.6129 4.55248 3.6129 5.04611V22.1375C3.68039 22.6338 3.77576 22.7774 3.84247 22.8449C3.9231 22.9265 4.13939 23.0732 4.8488 23.2103C7.37491 23.6985 9.40774 24.1095 11.266 24.8466Z" fill="white"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2857 5.71429H5.71429V26.2857H26.2857V5.71429ZM4.57143 4.57143V27.4286H27.4286V4.57143H4.57143Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.8571 10.2857H10.2857V30.8571H30.8571V10.2857ZM9.14286 9.14286V32H32V9.14286H9.14286Z" fill="white"/>
|
|
4
|
+
<path d="M0 0H22.8571V22.8571H0V0Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.28173 0C7.80153 0 8.22291 0.421379 8.22291 0.941176V3.17028H19.0217V0.941176C19.0217 0.421379 19.4431 0 19.9628 0C20.4826 0 20.904 0.421379 20.904 0.941176V3.17028H23.1331C24.2236 3.17028 25.2693 3.60345 26.0404 4.3745C26.8114 5.14554 27.2446 6.19131 27.2446 7.28173V13.6223C27.2446 14.1421 26.8232 14.5635 26.3034 14.5635L1.88235 14.5635V26.3034C1.88235 26.8946 2.1172 27.4616 2.53524 27.8796C2.95328 28.2977 3.52026 28.5325 4.11145 28.5325H14.8825C15.4023 28.5325 15.8237 28.9539 15.8237 29.4737C15.8237 29.9935 15.4023 30.4149 14.8825 30.4149H4.11145C3.02103 30.4149 1.97526 29.9817 1.20422 29.2106C0.43317 28.4396 0 27.3938 0 26.3034V7.28173C0 6.19131 0.43317 5.14554 1.20422 4.3745C1.97526 3.60345 3.02103 3.17028 4.11145 3.17028H6.34056V0.941176C6.34056 0.421379 6.76194 0 7.28173 0ZM6.34056 5.05263H4.11145C3.52026 5.05263 2.95328 5.28748 2.53524 5.70552C2.1172 6.12356 1.88235 6.69054 1.88235 7.28173V12.6811L25.3622 12.6811V7.28173C25.3622 6.69054 25.1274 6.12356 24.7093 5.70552C24.2913 5.28748 23.7243 5.05263 23.1331 5.05263H20.904V7.28173C20.904 7.80153 20.4826 8.22291 19.9628 8.22291C19.4431 8.22291 19.0217 7.80153 19.0217 7.28173V5.05263H8.22291V7.28173C8.22291 7.80153 7.80153 8.22291 7.28173 8.22291C6.76194 8.22291 6.34056 7.80153 6.34056 7.28173V5.05263ZM19.5693 19.5693C20.9349 18.2037 22.787 17.4365 24.7183 17.4365C26.6495 17.4365 28.5016 18.2037 29.8672 19.5693C31.2328 20.9349 32 22.787 32 24.7183C32 26.6495 31.2328 28.5016 29.8672 29.8672C28.5016 31.2328 26.6495 32 24.7183 32C22.787 32 20.9349 31.2328 19.5693 29.8672C18.2037 28.5016 17.4365 26.6495 17.4365 24.7183C17.4365 22.787 18.2037 20.9349 19.5693 19.5693ZM24.7183 19.3189C23.2863 19.3189 21.9129 19.8877 20.9003 20.9003C19.8877 21.9129 19.3189 23.2863 19.3189 24.7183C19.3189 26.1503 19.8877 27.5236 20.9003 28.5362C21.9129 29.5488 23.2863 30.1176 24.7183 30.1176C26.1503 30.1176 27.5236 29.5488 28.5362 28.5362C29.5488 27.5236 30.1176 26.1503 30.1176 24.7183C30.1176 23.2863 29.5488 21.9129 28.5362 20.9003C27.5236 19.8877 26.1503 19.3189 24.7183 19.3189ZM24.7183 21.393C25.2381 21.393 25.6594 21.8144 25.6594 22.3342V24.3284L26.9689 25.6379C27.3365 26.0054 27.3365 26.6014 26.9689 26.9689C26.6014 27.3365 26.0054 27.3365 25.6379 26.9689L24.0528 25.3838C23.8762 25.2073 23.7771 24.9679 23.7771 24.7183V22.3342C23.7771 21.8144 24.1985 21.393 24.7183 21.393Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 2C1.34375 2 0 3.34375 0 5V27C0 28.6562 1.34375 30 3 30H29C30.6562 30 32 28.6562 32 27V5C32 3.34375 30.6562 2 29 2H3ZM3 4H9.625C9.83125 4 10 4.16875 10 4.375V5.625C10 5.83125 9.83125 6 9.625 6H2.375C2.16875 6 2 5.83125 2 5.625V5C2 4.45 2.45 4 3 4ZM29.625 10H2.375C2.16875 10 2 9.83125 2 9.625V7.375C2 7.16875 2.16875 7 2.375 7H11L12.8875 4.16875C12.9563 4.0625 13.075 4 13.2 4H29C29.55 4 30 4.45 30 5V9.625C30 9.83125 29.8312 10 29.625 10ZM16 26.5C11.8625 26.5 8.5 23.1375 8.5 19C8.5 14.8625 11.8625 11.5 16 11.5C20.1375 11.5 23.5 14.8625 23.5 19C23.5 23.1375 20.1375 26.5 16 26.5ZM16 13.5C12.9688 13.5 10.5 15.9688 10.5 19C10.5 22.0312 12.9688 24.5 16 24.5C19.0312 24.5 21.5 22.0312 21.5 19C21.5 15.9688 19.0312 13.5 16 13.5ZM13 20C12.45 20 12 19.55 12 19C12 16.7937 13.7937 15 16 15C16.55 15 17 15.45 17 16C17 16.55 16.55 17 16 17C14.9 17 14 17.9 14 19C14 19.55 13.55 20 13 20Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6876 8.3295C32.1041 8.76884 32.1041 9.48116 31.6876 9.9205L16.7542 25.6705C16.3377 26.1098 15.6623 26.1098 15.2458 25.6705L0.312416 9.9205C-0.104141 9.48116 -0.104141 8.76884 0.312416 8.3295C0.728975 7.89017 1.40436 7.89017 1.82092 8.3295L16 23.284L30.1791 8.3295C30.5956 7.89017 31.271 7.89017 31.6876 8.3295Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.6705 0.312419C23.2312 -0.10414 22.5188 -0.10414 22.0795 0.312419L6.32951 15.2458C5.89017 15.6623 5.89017 16.3377 6.32951 16.7542L22.0795 31.6876C22.5188 32.1041 23.2312 32.1041 23.6705 31.6876C24.1098 31.271 24.1098 30.5956 23.6705 30.1791L8.71599 16L23.6705 1.82091C24.1098 1.40435 24.1098 0.728979 23.6705 0.312419Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.3295 0.312419C8.76884 -0.10414 9.48116 -0.10414 9.9205 0.312419L25.6705 15.2458C26.1098 15.6623 26.1098 16.3377 25.6705 16.7542L9.9205 31.6876C9.48116 32.1041 8.76884 32.1041 8.3295 31.6876C7.89017 31.271 7.89017 30.5956 8.3295 30.1791L23.284 16L8.3295 1.82091C7.89017 1.40435 7.89017 0.728979 8.3295 0.312419Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6876 23.6705C32.1041 23.2312 32.1041 22.5188 31.6876 22.0795L16.7542 6.32951C16.3377 5.89017 15.6623 5.89017 15.2458 6.32951L0.312418 22.0795C-0.104141 22.5188 -0.104141 23.2312 0.312418 23.6705C0.728977 24.1098 1.40435 24.1098 1.82091 23.6705L16 8.71599L30.1791 23.6705C30.5956 24.1098 31.271 24.1098 31.6876 23.6705Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6978 5.33291C32.1087 5.76833 32.0994 6.46475 31.6772 6.8884L11.9438 26.6884C11.5337 27.0999 10.8818 27.1044 10.4664 26.6985L0.333076 16.7985C-0.0945854 16.3807 -0.112831 15.6845 0.292322 15.2435C0.697474 14.8025 1.3726 14.7836 1.80026 15.2015L11.1902 24.3751L30.1895 5.3116C30.6117 4.88795 31.287 4.89749 31.6978 5.33291Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.253329 25.4746C0.500737 25.1729 0.889366 25 1.29199 25H30.708C31.1106 25 31.4993 25.1729 31.7467 25.4746C32.0095 25.795 32.0981 26.2531 31.8663 26.6924C31.1787 27.9955 29.4624 29 27.7664 29H4.2336C2.53762 29 0.821266 27.9955 0.13369 26.6924C-0.0980602 26.2531 -0.00945938 25.795 0.253329 25.4746Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.4041 14.5404C17.6579 14.6492 17.7755 14.9432 17.6667 15.197L14.6667 22.197C14.5579 22.4508 14.264 22.5684 14.0101 22.4596C13.7563 22.3508 13.6388 22.0569 13.7475 21.803L16.7475 14.803C16.8563 14.5492 17.1503 14.4317 17.4041 14.5404ZM13.0607 15.1465C13.2559 15.3417 13.2559 15.6583 13.0607 15.8536L10.4142 18.5L13.0607 21.1465C13.2559 21.3417 13.2559 21.6583 13.0607 21.8536C12.8654 22.0488 12.5488 22.0488 12.3536 21.8536L9 18.5L12.3536 15.1465C12.5488 14.9512 12.8654 14.9512 13.0607 15.1465ZM18.3536 15.1465C18.5488 14.9512 18.8654 14.9512 19.0607 15.1465L22.4142 18.5L19.0607 21.8536C18.8654 22.0488 18.5488 22.0488 18.3536 21.8536C18.1583 21.6583 18.1583 21.3417 18.3536 21.1465L21 18.5L18.3536 15.8536C18.1583 15.6583 18.1583 15.3417 18.3536 15.1465Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 8.5C3 7.39543 3.89543 6.5 5 6.5H18C18.5523 6.5 19 6.94772 19 7.5C19 8.05228 18.5523 8.5 18 8.5H5V12C5 12.5523 4.55228 13 4 13C3.44772 13 3 12.5523 3 12V8.5ZM28 16.5C28.5523 16.5 29 16.9477 29 17.5V23C29 23.5523 28.5523 24 28 24C27.4477 24 27 23.5523 27 23V17.5C27 16.9477 27.4477 16.5 28 16.5ZM4 19C4.55228 19 5 19.4477 5 20V23C5 23.5523 4.55228 24 4 24C3.44772 24 3 23.5523 3 23V20C3 19.4477 3.44772 19 4 19Z" fill="white"/>
|
|
5
|
+
<path d="M21.5 4C22.0523 4 22.5 4.44772 22.5 5V10C22.5 10.5523 22.0523 11 21.5 11C20.9477 11 20.5 10.5523 20.5 10V5C20.5 4.44772 20.9477 4 21.5 4Z" fill="white"/>
|
|
6
|
+
<path d="M29.2474 6.83564C29.6143 7.24842 29.5771 7.88049 29.1644 8.24741L24.6644 12.2474C24.2516 12.6143 23.6195 12.5771 23.2526 12.1644C22.8857 11.7516 22.9229 11.1195 23.3356 10.7526L27.8356 6.75259C28.2484 6.38567 28.8805 6.42285 29.2474 6.83564Z" fill="white"/>
|
|
7
|
+
<path d="M24.5 14C24.5 13.4477 24.9477 13 25.5 13H30.5C31.0523 13 31.5 13.4477 31.5 14C31.5 14.5523 31.0523 15 30.5 15H25.5C24.9477 15 24.5 14.5523 24.5 14Z" fill="white"/>
|
|
8
|
+
<path d="M3.95773 14.4865C4.01548 14.3351 4.23002 14.3351 4.28777 14.4865L4.63022 15.3846C4.64815 15.4316 4.68533 15.4687 4.73241 15.4866L5.63175 15.8285C5.78341 15.8862 5.78341 16.1004 5.63175 16.1581L4.73241 16.5C4.68533 16.5179 4.64815 16.5551 4.63022 16.6021L4.28777 17.5001C4.23002 17.6515 4.01548 17.6515 3.95773 17.5001L3.61527 16.6021C3.59735 16.5551 3.56017 16.5179 3.51309 16.5L2.61374 16.1581C2.46209 16.1004 2.46209 15.8862 2.61374 15.8285L3.51309 15.4866C3.56017 15.4687 3.59735 15.4316 3.61527 15.3846L3.95773 14.4865Z" fill="white"/>
|
|
9
|
+
<path d="M8.64757 10C8.73419 9.77285 9.05601 9.77285 9.14263 10L9.65631 11.347C9.6832 11.4175 9.73897 11.4732 9.80959 11.5001L11.1586 12.013C11.3861 12.0995 11.3861 12.4208 11.1586 12.5073L9.80959 13.0202C9.73897 13.0471 9.6832 13.1028 9.65631 13.1733L9.14263 14.5203C9.05601 14.7474 8.73419 14.7474 8.64757 14.5203L8.13389 13.1733C8.107 13.1028 8.05123 13.0471 7.98061 13.0202L6.63159 12.5073C6.40411 12.4208 6.40411 12.0995 6.63159 12.013L7.98061 11.5001C8.05123 11.4732 8.107 11.4175 8.13389 11.347L8.64757 10Z" fill="white"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M31.3928 9.98148L16.7678 0.231447C16.2686 -0.0757412 15.7358 -0.0785537 15.2321 0.231447L0.607124 9.98148C0.232125 10.2314 0 10.6779 0 11.1243V20.8743C0 21.3207 0.232125 21.7671 0.607186 22.0171L15.2322 31.7686C15.7313 32.0757 16.2641 32.0786 16.7678 31.7686L31.3928 22.0171C31.7678 21.7672 32 21.3207 32 20.8743V11.1243C31.9999 10.6779 31.7678 10.2314 31.3928 9.98148ZM17.375 3.94565L28.1428 11.1243L23.3393 14.3386L17.375 10.3564V3.94565ZM14.625 3.94565V10.3564L8.66067 14.3386L3.85712 11.1243L14.625 3.94565ZM2.74999 13.6957L6.19643 15.9993L2.74999 18.3029V13.6957ZM14.625 28.053L3.85712 20.8743L8.66067 17.66L14.625 21.6422V28.053ZM16 19.2493L11.1428 15.9993L16 12.7493L20.8571 15.9993L16 19.2493ZM17.375 28.053V21.6422L23.3393 17.66L28.1428 20.8743L17.375 28.053ZM29.2499 18.3029L25.8035 15.9993L29.2499 13.6957V18.3029Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.35239 3.17863C7.70019 2.57064 5.77473 3.3754 5.15758 4.97564C4.95706 5.4956 4.47812 5.98304 4.013 6.11196C2.35128 6.57253 0.944908 8.0761 0.353922 9.89343C-0.245007 11.7352 -0.0243773 13.9455 1.62394 15.8292C1.80579 16.0371 2.12167 16.0581 2.32948 15.8763C2.5373 15.6944 2.55835 15.3785 2.3765 15.1707C0.981033 13.576 0.804756 11.7407 1.3049 10.2027C1.81299 8.64026 3.00168 7.42996 4.2801 7.07563C5.11859 6.84323 5.80437 6.07766 6.0906 5.33547C6.52978 4.19669 8.04627 3.59828 9.26982 4.2331C9.75725 4.48599 10.219 4.94703 10.5404 5.69694C10.6492 5.95076 10.9431 6.06834 11.1969 5.95957C11.4507 5.85079 11.5683 5.55686 11.4595 5.30304C11.1567 4.59651 10.7357 4.05609 10.2434 3.67417C11.5384 2.17254 12.8814 1.34241 14.2212 1.11789C15.6715 0.874837 17.2181 1.32504 18.829 2.59518C19.1656 2.86056 19.6002 2.98494 20.0337 2.92245C21.0653 2.77375 21.8122 2.76803 22.4914 2.96503C23.1665 3.16084 23.8288 3.57315 24.6548 4.36165C24.8546 4.55233 25.1711 4.54498 25.3618 4.34523C25.5524 4.14549 25.5451 3.82899 25.3453 3.63832C24.4544 2.78786 23.6556 2.2615 22.77 2.00461C21.8884 1.7489 20.9748 1.77646 19.891 1.93268C19.7379 1.95474 19.577 1.91147 19.4482 1.80992C17.6801 0.415828 15.8559 -0.170016 14.0559 0.131646C12.3637 0.415225 10.783 1.46838 9.35239 3.17863ZM18.5069 6.58219C18.0665 3.93989 15.4904 3.13225 13.8001 4.39999C13.5792 4.56567 13.2658 4.5209 13.1001 4.29999C12.9344 4.07908 12.9792 3.76568 13.2001 3.59999C15.5098 1.86772 18.9337 3.06009 19.4933 6.41779C19.5387 6.69017 19.3547 6.94779 19.0823 6.99319C18.8099 7.03858 18.5523 6.85457 18.5069 6.58219ZM25.7189 5.08657C25.9472 4.93126 26.2582 4.99046 26.4135 5.21879C26.7312 5.6859 26.9563 6.10173 27.0863 6.5757C27.1803 6.91861 27.2194 7.27357 27.2223 7.67671C28.7958 7.93227 30.1058 9.19149 30.0464 11.052C30.0398 11.2579 30.0937 11.4278 30.1864 11.541C30.9757 12.5053 31.5372 13.3737 31.844 14.2691C32.1552 15.1774 32.1937 16.0815 31.9904 17.0981C31.2885 20.6075 28.2077 22.5 25.5001 22.5C24.2503 22.5 23.1939 21.9574 22.1087 21.1166C22.036 21.5407 21.9127 21.9693 21.7103 22.4124C21.3562 23.1875 20.774 23.976 19.8533 24.8541C19.7094 25.0046 19.6376 25.0972 19.592 25.1837C19.5516 25.2604 19.5191 25.3569 19.5001 25.5264V28.4755C19.5001 28.9794 19.244 29.4132 18.8949 29.6987C18.6983 29.8596 18.5854 29.9907 18.4758 30.1754C18.4665 30.1909 18.456 30.2133 18.4453 30.2454L18.2024 30.9743C17.9982 31.5869 17.425 32 16.7793 32H15.2208C14.5752 32 14.002 31.5869 13.7978 30.9743L13.5787 30.3171C13.5602 30.2616 13.5356 30.2173 13.5083 30.1837C13.3665 30.0091 13.2276 29.8643 13.0188 29.6766C12.7017 29.3915 12.5001 28.9818 12.5001 28.5338V25.4916L12.5004 25.4832C12.5041 25.3717 12.4922 25.3198 12.4633 25.2601C12.4256 25.1821 12.3453 25.0667 12.1561 24.8642C10.4977 23.4723 9.68043 21.7613 9.61104 20.1096C9.08892 19.9582 8.63049 19.7796 8.23422 19.4669C7.73773 19.0751 7.39009 18.5163 7.06087 17.6942C6.96344 17.4509 6.72978 17.3099 6.49394 17.3319C5.41281 17.4325 4.45657 17.437 3.30889 16.962C3.05374 16.8564 2.93249 16.564 3.03809 16.3088C3.14368 16.0536 3.43613 15.9324 3.69129 16.038C4.62017 16.4224 5.3869 16.4306 6.40126 16.3362C7.1029 16.2709 7.7366 16.6917 7.9892 17.3225C8.29001 18.0736 8.55535 18.4464 8.85372 18.6819C9.06301 18.8471 9.31301 18.9653 9.66563 19.0801C9.83196 17.9726 10.3433 16.9497 11.1465 16.1464C11.3418 15.9512 11.6584 15.9512 11.8536 16.1464C12.0489 16.3417 12.0489 16.6583 11.8536 16.8535C11.081 17.6262 10.6419 18.6478 10.6083 19.7429C10.5642 21.1791 11.2189 22.7814 12.8202 24.1159L12.8433 24.1351L12.8639 24.157C13.0845 24.391 13.2557 24.6019 13.3634 24.8244C13.3923 24.8841 13.4156 24.9425 13.4344 25H14.5001V20H15.5001V25H16.5001V20H17.5001V25H18.5901C18.6206 24.9026 18.659 24.8091 18.7073 24.7175C18.8209 24.502 18.9741 24.3259 19.1394 24.1538L19.1471 24.1457L19.1553 24.1379C20.0182 23.3162 20.5132 22.6262 20.8007 21.9968C21.0861 21.3722 21.1812 20.7767 21.2003 20.1171C21.2059 19.9218 21.2049 19.721 21.2002 19.5112C21.1289 16.3353 18.5775 14.5254 15.9952 14.5C14.6816 14.487 13.7429 14.9643 13.3536 15.3535C13.1584 15.5488 12.8418 15.5488 12.6465 15.3535C12.4513 15.1583 12.4513 14.8417 12.6465 14.6464C13.2573 14.0357 14.471 13.4849 16.005 13.5C19.0135 13.5296 22.1141 15.6665 22.2 19.4888C22.2031 19.628 22.2048 19.7667 22.204 19.9051C23.4485 20.9603 24.4089 21.5 25.5001 21.5C27.7925 21.5 30.413 19.8862 31.0098 16.9019C31.1831 16.0353 31.1446 15.3129 30.898 14.5933C30.647 13.8607 30.1698 13.0996 29.4125 12.1743C29.1309 11.8303 29.0346 11.4047 29.0469 11.0201C29.0921 9.60525 28.0171 8.66463 26.6986 8.62966C26.0903 8.61354 25.4317 8.79469 24.8257 9.23057C25.2059 9.93813 25.3136 10.8126 24.9643 11.6857C24.8618 11.9421 24.5708 12.0668 24.3144 11.9642C24.058 11.8617 23.9333 11.5707 24.0358 11.3143C24.3106 10.6274 24.1601 9.94264 23.7669 9.4281C23.3927 8.93859 22.8184 8.62983 22.2275 8.629C21.6571 8.62819 20.991 8.91508 20.4161 9.77735C20.2629 10.0071 19.9525 10.0692 19.7227 9.91602C19.493 9.76285 19.4309 9.45241 19.5841 9.22265C20.3142 8.12744 21.2723 7.62765 22.2289 7.629C22.9844 7.63007 23.6873 7.94448 24.215 8.43824C24.8461 7.97724 25.5388 7.72148 26.222 7.64978C26.2176 7.32417 26.1849 7.07016 26.1219 6.8401C26.0326 6.51465 25.8731 6.20239 25.5867 5.7812C25.4314 5.55287 25.4906 5.24187 25.7189 5.08657ZM18.5001 26H13.5001V27H18.5001V26ZM18.5001 28H13.5001V28.5338C13.5001 28.6769 13.5649 28.8228 13.6873 28.9329C13.7126 28.9556 13.7372 28.9779 13.7611 29H18.1725C18.2013 28.9749 18.231 28.9499 18.2618 28.9247C18.4212 28.7943 18.5001 28.6285 18.5001 28.4755V28ZM17.473 30H14.5271C14.527 29.9997 14.5272 30.0003 14.5271 30L14.7465 30.6581C14.8146 30.8623 15.0056 31 15.2208 31H16.7793C16.9945 31 17.1856 30.8623 17.2537 30.6581L17.473 30ZM2.68815 11.5387C2.76229 9.98177 3.96155 8.49999 6.00009 8.49999C6.27623 8.49999 6.50009 8.72385 6.50009 8.99999C6.50009 9.27613 6.27623 9.49999 6.00009 9.49999C4.53862 9.49999 3.73788 10.5182 3.68702 11.5863C3.66142 12.1239 3.82769 12.6688 4.20042 13.1047C4.57015 13.5371 5.16916 13.8922 6.06211 14.0038C6.33612 14.0381 6.53048 14.288 6.49623 14.562C6.46198 14.836 6.21208 15.0304 5.93807 14.9961C4.83101 14.8577 3.99252 14.4003 3.44038 13.7546C2.89123 13.1124 2.65126 12.3135 2.68815 11.5387ZM16.0001 8.49999C16.2762 8.49999 16.5001 8.72385 16.5001 8.99999V11.5C16.5001 11.7761 16.2762 12 16.0001 12C15.7239 12 15.5001 11.7761 15.5001 11.5V8.99999C15.5001 8.72385 15.7239 8.49999 16.0001 8.49999ZM23.8536 12.1464C24.0489 12.3417 24.0489 12.6583 23.8536 12.8535L22.3536 14.3535C22.1584 14.5488 21.8418 14.5488 21.6465 14.3535C21.4513 14.1583 21.4513 13.8417 21.6465 13.6464L23.1465 12.1464C23.3418 11.9512 23.6584 11.9512 23.8536 12.1464ZM8.14653 12.1464C8.34179 11.9512 8.65838 11.9512 8.85364 12.1464L10.3536 13.6464C10.5489 13.8417 10.5489 14.1583 10.3536 14.3535C10.1584 14.5488 9.8418 14.5488 9.64654 14.3535L8.14654 12.8536C7.95127 12.6583 7.95127 12.3417 8.14653 12.1464ZM27.6465 13.6464C27.8418 13.4512 28.1584 13.4512 28.3536 13.6464C28.9686 14.2614 29.2501 15.1508 29.2501 16C29.2501 16.8492 28.9686 17.7386 28.3536 18.3535C28.1584 18.5488 27.8418 18.5488 27.6465 18.3535C27.4513 18.1583 27.4513 17.8417 27.6465 17.6464C28.0315 17.2614 28.2501 16.6508 28.2501 16C28.2501 15.3492 28.0315 14.7386 27.6465 14.3535C27.4513 14.1583 27.4513 13.8417 27.6465 13.6464ZM4.50009 20C4.50009 19.7238 4.72395 19.5 5.00009 19.5H7.50009C7.77623 19.5 8.00009 19.7238 8.00009 20C8.00009 20.2761 7.77623 20.5 7.50009 20.5H5.00009C4.72395 20.5 4.50009 20.2761 4.50009 20ZM24.0001 20C24.0001 19.7238 24.2239 19.5 24.5001 19.5H27.0001C27.2762 19.5 27.5001 19.7238 27.5001 20C27.5001 20.2761 27.2762 20.5 27.0001 20.5H24.5001C24.2239 20.5 24.0001 20.2761 24.0001 20ZM10.3536 25.6464C10.5489 25.8417 10.5489 26.1583 10.3536 26.3535L8.85364 27.8535C8.65838 28.0488 8.3418 28.0488 8.14653 27.8535C7.95127 27.6583 7.95127 27.3417 8.14653 27.1464L9.64653 25.6464C9.8418 25.4512 10.1584 25.4512 10.3536 25.6464ZM21.6465 25.6464C21.8418 25.4512 22.1584 25.4512 22.3536 25.6464L23.8536 27.1464C24.0489 27.3417 24.0489 27.6583 23.8536 27.8535C23.6584 28.0488 23.3418 28.0488 23.1465 27.8535L21.6465 26.3535C21.4513 26.1583 21.4513 25.8417 21.6465 25.6464Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.0001 20.5C14.2762 20.5 14.5001 20.2761 14.5001 20C14.5001 19.7239 14.2762 19.5 14.0001 19.5C13.724 19.5 13.5001 19.7239 13.5001 20C13.5001 20.2761 13.724 20.5 14.0001 20.5ZM14.0001 21.5C14.8285 21.5 15.5001 20.8284 15.5001 20C15.5001 19.1716 14.8285 18.5 14.0001 18.5C13.1717 18.5 12.5001 19.1716 12.5001 20C12.5001 20.8284 13.1717 21.5 14.0001 21.5Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.0001 20.5C18.2762 20.5 18.5001 20.2761 18.5001 20C18.5001 19.7239 18.2762 19.5 18.0001 19.5C17.724 19.5 17.5001 19.7238 17.5001 20C17.5001 20.2761 17.724 20.5 18.0001 20.5ZM18.0001 21.5C18.8285 21.5 19.5001 20.8284 19.5001 20C19.5001 19.1716 18.8285 18.5 18.0001 18.5C17.1717 18.5 16.5001 19.1716 16.5001 20C16.5001 20.8284 17.1717 21.5 18.0001 21.5Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.429974 31.57C-0.184246 30.9558 -0.134454 29.9102 0.541189 29.2345L29.2345 0.54119C29.9102 -0.134452 30.9558 -0.184246 31.57 0.429974C32.1842 1.04419 32.1345 2.08984 31.4588 2.76548L2.76548 31.4588C2.08983 32.1345 1.04419 32.1842 0.429974 31.57Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.57 31.57C30.9558 32.1842 29.9102 32.1345 29.2345 31.4588L0.54119 2.76548C-0.134452 2.08984 -0.184246 1.04419 0.429974 0.429974C1.04419 -0.184246 2.08984 -0.134453 2.76548 0.541189L31.4588 29.2345C32.1345 29.9102 32.1842 30.9558 31.57 31.57Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5193 6.09589C19.8943 6.21074 20.126 6.61423 20.0368 6.9971L19.8031 8.00015L21.2955 8.14553C22.9962 8.31121 24.6423 8.98434 26.0332 10.0829L26.2 10.2146C27.359 11.13 28.7459 11.6594 30.1639 11.7277C31.3442 11.7845 32.223 12.9754 31.9499 14.1479L30.3636 20.9575C30.1508 21.8712 29.3562 22.4811 28.4364 22.4368L28.2308 22.4269C26.3868 22.3381 24.583 21.6496 23.0757 20.4592C21.9061 19.5354 20.522 18.9694 19.0919 18.8301L17.3205 18.6576L15.7304 25.484C15.6412 25.8668 15.2649 26.0841 14.8899 25.9693C14.5149 25.8545 14.2832 25.451 14.3724 25.0681L18.6788 6.58121C18.768 6.19833 19.1443 5.98105 19.5193 6.09589ZM17.6499 17.2435L19.1423 17.3889C20.843 17.5547 22.489 18.2278 23.88 19.3263C25.1474 20.3273 26.6642 20.9062 28.2148 20.9809L28.4204 20.9908C28.6997 21.0043 28.941 20.8191 29.0056 20.5416L30.5919 13.732C30.6549 13.4615 30.4522 13.1868 30.1799 13.1737C28.4686 13.0913 26.7946 12.4523 25.3958 11.3475L25.229 11.2158C24.0593 10.292 22.6752 9.726 21.2451 9.58669L19.4738 9.41412L17.6499 17.2435Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4807 6.03071C12.1057 6.14555 11.874 6.54904 11.9632 6.93191L12.1969 7.93496L10.7045 8.08034C9.00382 8.24602 7.35772 8.91915 5.96679 10.0177L5.80001 10.1494C4.641 11.0648 3.25406 11.5942 1.83613 11.6625C0.655789 11.7193 -0.223045 12.9102 0.0500897 14.0827L1.63637 20.8923C1.84922 21.8061 2.64376 22.416 3.56358 22.3716L3.76923 22.3617C5.61321 22.2729 7.41701 21.5844 8.92425 20.394C10.0939 19.4702 11.478 18.9042 12.9081 18.7649L14.6795 18.5924L16.2696 25.4188C16.3588 25.8017 16.7351 26.019 17.1101 25.9041C17.4851 25.7893 17.7168 25.3858 17.6276 25.0029L13.3212 6.51602C13.232 6.13315 12.8557 5.91586 12.4807 6.03071ZM14.3501 17.1784L12.8577 17.3238C11.157 17.4895 9.51095 18.1626 8.12001 19.2611C6.85264 20.2621 5.33582 20.8411 3.78525 20.9158L3.5796 20.9257C3.3003 20.9391 3.05901 20.7539 2.99437 20.4764L1.40809 13.6668C1.34508 13.3963 1.54781 13.1216 1.82012 13.1085C3.53145 13.0261 5.20537 12.3871 6.60425 11.2823L6.77104 11.1506C7.9407 10.2268 9.32481 9.66082 10.7549 9.5215L12.5262 9.34893L14.3501 17.1784Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22.4 0H5.6C3.61178 0 2 1.59188 2 3.55556V28.4444C2 30.4081 3.61177 32 5.6 32H22.4C24.3882 32 26 30.4081 26 28.4444V26.6731C26 26.2662 25.7442 25.8862 25.3384 25.916C25.0589 25.9365 24.7795 26 24.5 26C24 26 23.6 26 23.6 26.5V28.4444C23.6 29.099 23.0627 29.6296 22.4 29.6296H5.6C4.93726 29.6296 4.4 29.099 4.4 28.4444V3.55556C4.4 2.901 4.93726 2.37037 5.6 2.37037H22.4C23.0627 2.37037 23.6 2.901 23.6 3.55556V8.5V8.93833C23.6 9.74682 24.5096 10.2211 25.1725 9.75822L25.5725 9.47891C25.8404 9.29186 26 8.98574 26 8.65902V3.55556C26 1.59188 24.3882 0 22.4 0Z" fill="white"/>
|
|
3
|
+
<path d="M28.7805 11.1988C29.6569 11.1988 30.2466 12.101 29.8984 12.9093L26.0289 21.8928C25.7914 22.4442 25.2507 22.801 24.6529 22.801H23.9849C23.3864 22.801 22.8452 22.4434 22.6081 21.8911L18.8147 13.0552C18.4379 12.1774 19.0783 11.1988 20.0296 11.1988C20.5599 11.1988 21.039 11.517 21.2469 12.0074L24.4172 19.4861L27.6622 11.9375C27.855 11.4892 28.2945 11.1988 28.7805 11.1988Z" fill="white"/>
|
|
4
|
+
<path d="M13.251 23C12.0745 23 11.0079 22.7459 10.0513 22.2376C9.10565 21.7182 8.35795 21.0055 7.80817 20.0994C7.26939 19.1823 7 18.1492 7 17C7 15.8508 7.26939 14.8232 7.80817 13.9171C8.35795 13 9.10565 12.2873 10.0513 11.779C11.0079 11.2597 12.08 11 13.2675 11C14.2681 11 15.1697 11.1768 15.9724 11.5304C16.429 11.7288 16.8441 11.976 17.2176 12.2718C17.71 12.6619 17.656 13.3906 17.1953 13.818C16.7067 14.2712 15.9519 14.2031 15.3899 13.8462C14.8033 13.4736 14.1398 13.2873 13.3994 13.2873C12.6847 13.2873 12.047 13.4475 11.4862 13.768C10.9254 14.0773 10.4856 14.5138 10.1667 15.0773C9.85885 15.6409 9.70491 16.2818 9.70491 17C9.70491 17.7182 9.85885 18.3591 10.1667 18.9227C10.4856 19.4862 10.9254 19.9282 11.4862 20.2486C12.047 20.558 12.6847 20.7127 13.3994 20.7127C14.1391 20.7127 14.8021 20.5245 15.3884 20.148C15.9514 19.7864 16.7104 19.7156 17.2013 20.171C17.6597 20.5962 17.7167 21.3204 17.2302 21.7128C16.8534 22.0167 16.4342 22.2689 15.9724 22.4696C15.1587 22.8232 14.2516 23 13.251 23Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30 6H2V26H30V6ZM2 4C0.895431 4 0 4.89543 0 6V26C0 27.1046 0.895431 28 2 28H30C31.1046 28 32 27.1046 32 26V6C32 4.89543 31.1046 4 30 4H2Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30 12H2V10H30V12Z" fill="white"/>
|
|
4
|
+
<path d="M5 8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8C3 7.44772 3.44772 7 4 7C4.55228 7 5 7.44772 5 8Z" fill="white"/>
|
|
5
|
+
<path d="M8 8C8 8.55228 7.55228 9 7 9C6.44772 9 6 8.55228 6 8C6 7.44772 6.44772 7 7 7C7.55228 7 8 7.44772 8 8Z" fill="white"/>
|
|
6
|
+
<path d="M11 8C11 8.55228 10.5523 9 10 9C9.44771 9 9 8.55228 9 8C9 7.44772 9.44771 7 10 7C10.5523 7 11 7.44772 11 8Z" fill="white"/>
|
|
7
|
+
<path d="M19 8C19 7.44772 19.4477 7 20 7H28C28.5523 7 29 7.44772 29 8C29 8.55228 28.5523 9 28 9H20C19.4477 9 19 8.55228 19 8Z" fill="white"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 14C12.5523 14 13 14.4477 13 15V22C13 22.1748 13.0975 22.4332 13.3321 22.6679C13.5668 22.9025 13.8252 23 14 23C14.1748 23 14.4332 22.9025 14.6679 22.6679C14.9025 22.4332 15 22.1748 15 22V15C15 14.4477 15.4477 14 16 14C16.5523 14 17 14.4477 17 15V22C17 22.8252 16.5975 23.5668 16.0821 24.0821C15.5668 24.5975 14.8252 25 14 25C13.1748 25 12.4332 24.5975 11.9179 24.0821C11.4025 23.5668 11 22.8252 11 22V15C11 14.4477 11.4477 14 12 14ZM20 14C20.5523 14 21 14.4477 21 15V24C21 24.5523 20.5523 25 20 25C19.4477 25 19 24.5523 19 24V15C19 14.4477 19.4477 14 20 14Z" fill="white"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.80589 1.40589C8.70606 0.505713 9.92696 0 11.2 0H27.2C28.473 0 29.6939 0.505713 30.5941 1.40589C31.4943 2.30606 32 3.52696 32 4.8V25.6C32 27.2974 31.3257 28.9253 30.1255 30.1255C28.9253 31.3257 27.2974 32 25.6 32H6.4C4.70262 32 3.07475 31.3257 1.87452 30.1255C0.674284 28.9253 0 27.2974 0 25.6C0 23.9026 0.674284 22.2747 1.87452 21.0745C3.07475 19.8743 4.70262 19.2 6.4 19.2V4.8C6.4 3.52696 6.90571 2.30606 7.80589 1.40589ZM6.4 22.4C5.55131 22.4 4.73737 22.7371 4.13726 23.3373C3.53714 23.9374 3.2 24.7513 3.2 25.6C3.2 26.4487 3.53714 27.2626 4.13726 27.8627C4.73737 28.4629 5.55131 28.8 6.4 28.8H18.4574C17.9005 27.8354 17.6 26.7332 17.6 25.6C17.6 24.4668 17.9005 23.3646 18.4574 22.4H6.4ZM24 19.2H9.6V4.8C9.6 4.37565 9.76857 3.96869 10.0686 3.66863C10.3687 3.36857 10.7757 3.2 11.2 3.2H27.2C27.6243 3.2 28.0313 3.36857 28.3314 3.66863C28.6314 3.96869 28.8 4.37565 28.8 4.8V25.6C28.8 26.4487 28.4629 27.2626 27.8627 27.8627C27.2626 28.4629 26.4487 28.8 25.6 28.8H24C23.1513 28.8 22.3374 28.4629 21.7373 27.8627C21.1371 27.2626 20.8 26.4487 20.8 25.6C20.8 24.7513 21.1371 23.9374 21.7373 23.3373C22.3374 22.7371 23.1513 22.4 24 22.4C24.8837 22.4 25.6 21.6837 25.6 20.8C25.6 19.9163 24.8837 19.2 24 19.2Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M31.2 28.7873H25.6V2.55007C25.6 1.1435 24.5235 -2.6043e-05 23.2 -2.6043e-05H8.7995C7.476 -2.6043e-05 6.3995 1.1435 6.3995 2.55007V28.7873H0.8C0.358 28.7873 0 29.1467 0 29.5905V31.1968C0 31.6406 0.358 32 0.8 32H31.2C31.642 32 32 31.6406 32 31.1968V29.5905C32 29.1467 31.642 28.7873 31.2 28.7873ZM20.7995 20.7555C19.916 20.7555 19.1995 20.0361 19.1995 19.1491C19.1995 18.2621 19.916 17.5428 20.7995 17.5428C21.683 17.5428 22.3995 18.2621 22.3995 19.1491C22.4 20.0361 21.6835 20.7555 20.7995 20.7555Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M31.2 28.6896H27.2V5.86806C27.2 4.45806 26.1235 3.3103 24.8 3.3103H19.2V6.62065H24V32H31.2C31.642 32 32 31.6297 32 31.1724V29.5172C32 29.06 31.642 28.6896 31.2 28.6896ZM15.612 0.0521911L6.012 2.62495C5.2995 2.81582 4.8 3.50168 4.8 4.28892V28.6896H0.8C0.358 28.6896 0 29.06 0 29.5172V31.1724C0 31.6297 0.358 32 0.8 32H17.6V1.71616C17.6 0.599951 16.622 -0.218844 15.612 0.0521911ZM13.2 20.4138C12.5375 20.4138 12 19.6726 12 18.7586C12 17.8446 12.5375 17.1034 13.2 17.1034C13.8625 17.1034 14.4 17.8446 14.4 18.7586C14.4 19.6726 13.8625 20.4138 13.2 20.4138Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.312419 1.3112C-0.10414 1.72613 -0.10414 2.39887 0.312419 2.8138L15.2458 17.6888C15.6623 18.1037 16.3377 18.1037 16.7542 17.6888L31.6876 2.8138C32.1041 2.39887 32.1041 1.72613 31.6876 1.3112C31.271 0.896267 30.5956 0.896267 30.1791 1.3112L16 15.4349L1.82091 1.3112C1.40435 0.896267 0.728979 0.896267 0.312419 1.3112Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.312419 14.3112C-0.10414 14.7261 -0.10414 15.3989 0.312419 15.8138L15.2458 30.6888C15.6623 31.1037 16.3377 31.1037 16.7542 30.6888L31.6876 15.8138C32.1041 15.3989 32.1041 14.7261 31.6876 14.3112C31.271 13.8963 30.5956 13.8963 30.1791 14.3112L16 28.4349L1.82091 14.3112C1.40435 13.8963 0.728979 13.8963 0.312419 14.3112Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.6888 0.312419C30.2739 -0.10414 29.6011 -0.10414 29.1862 0.312419L14.3112 15.2458C13.8963 15.6623 13.8963 16.3377 14.3112 16.7542L29.1862 31.6876C29.6011 32.1041 30.2739 32.1041 30.6888 31.6876C31.1037 31.271 31.1037 30.5956 30.6888 30.1791L16.5651 16L30.6888 1.82091C31.1037 1.40435 31.1037 0.728979 30.6888 0.312419Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.6705 0.312419C18.2312 -0.10414 17.5188 -0.10414 17.0795 0.312419L1.32951 15.2458C0.890167 15.6623 0.890167 16.3377 1.32951 16.7542L17.0795 31.6876C17.5188 32.1041 18.2312 32.1041 18.6705 31.6876C19.1098 31.271 19.1098 30.5956 18.6705 30.1791L3.71599 16L18.6705 1.82091C19.1098 1.40435 19.1098 0.728979 18.6705 0.312419Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.3112 0.312419C14.7261 -0.10414 15.3989 -0.10414 15.8138 0.312419L30.6888 15.2458C31.1037 15.6623 31.1037 16.3377 30.6888 16.7542L15.8138 31.6876C15.3989 32.1041 14.7261 32.1041 14.3112 31.6876C13.8963 31.271 13.8963 30.5956 14.3112 30.1791L28.4349 16L14.3112 1.82091C13.8963 1.40435 13.8963 0.728979 14.3112 0.312419Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.3295 0.312419C1.76884 -0.10414 2.48116 -0.10414 2.9205 0.312419L18.6705 15.2458C19.1098 15.6623 19.1098 16.3377 18.6705 16.7542L2.9205 31.6876C2.48116 32.1041 1.76884 32.1041 1.3295 31.6876C0.890165 31.271 0.890165 30.5956 1.3295 30.1791L16.284 16L1.3295 1.82091C0.890165 1.40435 0.890165 0.728979 1.3295 0.312419Z" fill="white"/>
|
|
4
|
+
</svg>
|