flowbite-svelte 0.25.18 → 0.25.21

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/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.25.21](https://github.com/themesberg/flowbite-svelte/compare/v0.25.20...v0.25.21) (2022-08-27)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add relative class to Hr component ([d8c6fbf](https://github.com/themesberg/flowbite-svelte/commit/d8c6fbf367a43b7c13ea55a56ae9c9f0b94fa96e))
11
+
12
+ ### [0.25.20](https://github.com/themesberg/flowbite-svelte/compare/v0.25.19...v0.25.20) (2022-08-27)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * index page space ([6ab9a19](https://github.com/themesberg/flowbite-svelte/commit/6ab9a19e004fc19ba3bd696acedbc5bbc0ced966))
18
+ * remove heros from: ([7055f4c](https://github.com/themesberg/flowbite-svelte/commit/7055f4c5ddaa91e15cabaf7d1112a149cf81374d))
19
+ * remove heros icon from Carousel ([2c7d4c9](https://github.com/themesberg/flowbite-svelte/commit/2c7d4c9a6edc1a4dd4005e5dcf46fec8b5dc0a52))
20
+
21
+ ### [0.25.19](https://github.com/themesberg/flowbite-svelte/compare/v0.25.18...v0.25.19) (2022-08-27)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * remove Home icons from all pages ([7ac0e7a](https://github.com/themesberg/flowbite-svelte/commit/7ac0e7aa3edc5486d597a61775a5694c76b4bb35))
27
+ * removed Home icon from BreadcrumbItem ([66f00dd](https://github.com/themesberg/flowbite-svelte/commit/66f00dd9e024d97c2b9766e30b03b775f227c672))
28
+
5
29
  ### [0.25.18](https://github.com/themesberg/flowbite-svelte/compare/v0.25.17...v0.25.18) (2022-08-27)
6
30
 
7
31
 
@@ -1,5 +1,4 @@
1
- <script>import { ChevronRight, ChevronLeft } from 'svelte-heros';
2
- import Slide from './Slide.svelte';
1
+ <script>import Slide from './Slide.svelte';
3
2
  import Thumbnail from './Thumbnail.svelte';
4
3
  import Caption from './Caption.svelte';
5
4
  import Indicator from './Indicator.svelte';
@@ -10,12 +9,6 @@ export let images;
10
9
  export let slideControls = true;
11
10
  export let loop = false;
12
11
  export let duration = 2000;
13
- export let icons = {
14
- next: ChevronRight,
15
- prev: ChevronLeft
16
- };
17
- export let iconSize = 24;
18
- export let iconClass = 'text-white sm:w-6 sm:h-6 dark:text-gray-300';
19
12
  // Carousel
20
13
  export let divClass = 'overflow-hidden relative h-56 rounded-lg sm:h-64 xl:h-80 2xl:h-96';
21
14
  export let indicatorDivClass = 'flex absolute bottom-5 left-1/2 z-30 space-x-3 -translate-x-1/2';
@@ -64,8 +57,7 @@ if (loop) {
64
57
  {name}
65
58
  selected={imageShowingIndex === id}
66
59
  on:click={() => goToSlide(id)}
67
- {indicatorClass}
68
- />
60
+ {indicatorClass} />
69
61
  {/each}
70
62
  </div>
71
63
  {/if}
@@ -75,12 +67,25 @@ if (loop) {
75
67
  on:click={prevSlide}
76
68
  type="button"
77
69
  class="flex absolute top-0 left-0 z-30 justify-center items-center px-4 h-full cursor-pointer group focus:outline-none"
78
- data-carousel-prev
79
- >
70
+ data-carousel-prev>
80
71
  <span
81
- class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none"
82
- >
83
- <svelte:component this={icons.prev} size={iconSize} class=" {iconClass}" />
72
+ class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
73
+ {#if $$slots.previous}
74
+ <slot name="previous" />
75
+ {:else}
76
+ <svg
77
+ aria-hidden="true"
78
+ class="w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-300"
79
+ fill="none"
80
+ stroke="currentColor"
81
+ viewBox="0 0 24 24"
82
+ xmlns="http://www.w3.org/2000/svg"
83
+ ><path
84
+ stroke-linecap="round"
85
+ stroke-linejoin="round"
86
+ stroke-width="2"
87
+ d="M15 19l-7-7 7-7" /></svg>
88
+ {/if}
84
89
  <span class="hidden">Previous</span>
85
90
  </span>
86
91
  </button>
@@ -88,12 +93,25 @@ if (loop) {
88
93
  on:click={nextSlide}
89
94
  type="button"
90
95
  class="flex absolute top-0 right-0 z-30 justify-center items-center px-4 h-full cursor-pointer group focus:outline-none"
91
- data-carousel-next
92
- >
96
+ data-carousel-next>
93
97
  <span
94
- class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none"
95
- >
96
- <svelte:component this={icons.next} size={iconSize} class=" {iconClass}" />
98
+ class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
99
+ {#if $$slots.next}
100
+ <slot name="next" />
101
+ {:else}
102
+ <svg
103
+ aria-hidden="true"
104
+ class="w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-300"
105
+ fill="none"
106
+ stroke="currentColor"
107
+ viewBox="0 0 24 24"
108
+ xmlns="http://www.w3.org/2000/svg"
109
+ ><path
110
+ stroke-linecap="round"
111
+ stroke-linejoin="round"
112
+ stroke-width="2"
113
+ d="M9 5l7 7-7 7" /></svg>
114
+ {/if}
97
115
  <span class="hidden">Next</span>
98
116
  </span>
99
117
  </button>
@@ -114,8 +132,7 @@ if (loop) {
114
132
  titleLink={attribution}
115
133
  {id}
116
134
  selected={imageShowingIndex === id}
117
- on:click={() => goToSlide(id)}
118
- />
135
+ on:click={() => goToSlide(id)} />
119
136
  {/each}
120
137
  </div>
121
138
  {/if}
@@ -1,5 +1,4 @@
1
1
  import { SvelteComponentTyped } from "svelte";
2
- import type { CarouselIconType } from '../types';
3
2
  declare const __propDef: {
4
3
  props: {
5
4
  showIndicators?: boolean;
@@ -9,9 +8,6 @@ declare const __propDef: {
9
8
  slideControls?: boolean;
10
9
  loop?: boolean;
11
10
  duration?: number;
12
- icons?: CarouselIconType;
13
- iconSize?: number;
14
- iconClass?: string;
15
11
  divClass?: string;
16
12
  indicatorDivClass?: string;
17
13
  captionClass?: string;
@@ -21,7 +17,10 @@ declare const __propDef: {
21
17
  events: {
22
18
  [evt: string]: CustomEvent<any>;
23
19
  };
24
- slots: {};
20
+ slots: {
21
+ previous: {};
22
+ next: {};
23
+ };
25
24
  };
26
25
  export declare type CarouselProps = typeof __propDef.props;
27
26
  export declare type CarouselEvents = typeof __propDef.events;
@@ -1,5 +1,4 @@
1
- <script>import { ChevronRight, ChevronLeft } from 'svelte-heros';
2
- import { fade, blur, fly, slide } from 'svelte/transition';
1
+ <script>import { fade, blur, fly, slide } from 'svelte/transition';
3
2
  import Slide from './Slide.svelte';
4
3
  import Thumbnail from './Thumbnail.svelte';
5
4
  import Caption from './Caption.svelte';
@@ -16,13 +15,6 @@ export let duration = 2000;
16
15
  // Carousel
17
16
  export let divClass = 'overflow-hidden relative h-56 rounded-lg sm:h-64 xl:h-80 2xl:h-96';
18
17
  export let indicatorDivClass = 'flex absolute bottom-5 left-1/2 z-30 space-x-3 -translate-x-1/2';
19
- // Slide controllers
20
- export let icons = {
21
- next: ChevronRight,
22
- prev: ChevronLeft
23
- };
24
- export let iconSize = 24;
25
- export let iconClass = 'text-white sm:w-6 sm:h-6 dark:text-gray-300';
26
18
  // Caption
27
19
  export let captionClass = 'h-10 bg-gray-300 dark:bg-gray-700 dark:text-white p-2 my-2 text-center';
28
20
  // Indicator
@@ -88,8 +80,7 @@ if (loop) {
88
80
  {name}
89
81
  selected={imageShowingIndex === id}
90
82
  on:click={() => goToSlide(id)}
91
- {indicatorClass}
92
- />
83
+ {indicatorClass} />
93
84
  {/each}
94
85
  </div>
95
86
  {/if}
@@ -99,12 +90,25 @@ if (loop) {
99
90
  on:click={prevSlide}
100
91
  type="button"
101
92
  class="flex absolute top-0 left-0 z-30 justify-center items-center px-4 h-full cursor-pointer group focus:outline-none"
102
- data-carousel-prev
103
- >
93
+ data-carousel-prev>
104
94
  <span
105
- class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none"
106
- >
107
- <svelte:component this={icons.prev} size={iconSize} class=" {iconClass}" />
95
+ class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
96
+ {#if $$slots.previous}
97
+ <slot name="previous" />
98
+ {:else}
99
+ <svg
100
+ aria-hidden="true"
101
+ class="w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-300"
102
+ fill="none"
103
+ stroke="currentColor"
104
+ viewBox="0 0 24 24"
105
+ xmlns="http://www.w3.org/2000/svg"
106
+ ><path
107
+ stroke-linecap="round"
108
+ stroke-linejoin="round"
109
+ stroke-width="2"
110
+ d="M15 19l-7-7 7-7" /></svg>
111
+ {/if}
108
112
  <span class="hidden">Previous</span>
109
113
  </span>
110
114
  </button>
@@ -112,12 +116,25 @@ if (loop) {
112
116
  on:click={nextSlide}
113
117
  type="button"
114
118
  class="flex absolute top-0 right-0 z-30 justify-center items-center px-4 h-full cursor-pointer group focus:outline-none"
115
- data-carousel-next
116
- >
119
+ data-carousel-next>
117
120
  <span
118
- class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none"
119
- >
120
- <svelte:component this={icons.next} size={iconSize} class=" {iconClass}" />
121
+ class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
122
+ {#if $$slots.next}
123
+ <slot name="next" />
124
+ {:else}
125
+ <svg
126
+ aria-hidden="true"
127
+ class="w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-300"
128
+ fill="none"
129
+ stroke="currentColor"
130
+ viewBox="0 0 24 24"
131
+ xmlns="http://www.w3.org/2000/svg"
132
+ ><path
133
+ stroke-linecap="round"
134
+ stroke-linejoin="round"
135
+ stroke-width="2"
136
+ d="M9 5l7 7-7 7" /></svg>
137
+ {/if}
121
138
  <span class="hidden">Next</span>
122
139
  </span>
123
140
  </button>
@@ -138,8 +155,7 @@ if (loop) {
138
155
  titleLink={attribution}
139
156
  {id}
140
157
  selected={imageShowingIndex === id}
141
- on:click={() => goToSlide(id)}
142
- />
158
+ on:click={() => goToSlide(id)} />
143
159
  {/each}
144
160
  </div>
145
161
  {/if}
@@ -1,5 +1,4 @@
1
1
  import { SvelteComponentTyped } from "svelte";
2
- import type { CarouselIconType } from '../types';
3
2
  import type { TransitionTypes, TransitionParamTypes } from '../types';
4
3
  declare const __propDef: {
5
4
  props: {
@@ -14,16 +13,16 @@ declare const __propDef: {
14
13
  duration?: number;
15
14
  divClass?: string;
16
15
  indicatorDivClass?: string;
17
- icons?: CarouselIconType;
18
- iconSize?: number;
19
- iconClass?: string;
20
16
  captionClass?: string;
21
17
  indicatorClass?: string;
22
18
  };
23
19
  events: {
24
20
  [evt: string]: CustomEvent<any>;
25
21
  };
26
- slots: {};
22
+ slots: {
23
+ previous: {};
24
+ next: {};
25
+ };
27
26
  };
28
27
  export declare type CarouselTransitionProps = typeof __propDef.props;
29
28
  export declare type CarouselTransitionEvents = typeof __propDef.events;
package/index.d.ts CHANGED
@@ -38,18 +38,6 @@ export { default as SimpleSearch } from './forms/SimpleSearch.svelte';
38
38
  export { default as Textarea } from './forms/Textarea.svelte';
39
39
  export { default as Toggle } from './forms/Toggle.svelte';
40
40
  export { default as VoiceSearch } from './forms/VoiceSearch.svelte';
41
- export { default as CodeBracket } from './icons/CodeBracket.svelte';
42
- export { default as Envelope } from './icons/Envelope.svelte';
43
- export { default as FaceSmile } from './icons/FaceSmile.svelte';
44
- export { default as Figma } from './icons/Figma.svelte';
45
- export { default as Home } from './icons/Home.svelte';
46
- export { default as Map } from './icons/Map.svelte';
47
- export { default as MapPin } from './icons/MapPin.svelte';
48
- export { default as PaperAirplane } from './icons/PaperAirplane.svelte';
49
- export { default as PaperClip } from './icons/PaperClip.svelte';
50
- export { default as Photo } from './icons/Photo.svelte';
51
- export { default as QrCode } from './icons/QrCode.svelte';
52
- export { default as QuoteLeft } from './icons/QuoteLeft.svelte';
53
41
  export { default as Kbd } from './kbd/Kbd.svelte';
54
42
  export { default as ArrowKeyDown } from './kbd/ArrowKeyDown.svelte';
55
43
  export { default as ArrowKeyLeft } from './kbd/ArrowKeyLeft.svelte';
package/index.js CHANGED
@@ -52,19 +52,6 @@ export { default as SimpleSearch } from './forms/SimpleSearch.svelte';
52
52
  export { default as Textarea } from './forms/Textarea.svelte';
53
53
  export { default as Toggle } from './forms/Toggle.svelte';
54
54
  export { default as VoiceSearch } from './forms/VoiceSearch.svelte';
55
- // Icons
56
- export { default as CodeBracket } from './icons/CodeBracket.svelte';
57
- export { default as Envelope } from './icons/Envelope.svelte';
58
- export { default as FaceSmile } from './icons/FaceSmile.svelte';
59
- export { default as Figma } from './icons/Figma.svelte';
60
- export { default as Home } from './icons/Home.svelte';
61
- export { default as Map } from './icons/Map.svelte';
62
- export { default as MapPin } from './icons/MapPin.svelte';
63
- export { default as PaperAirplane } from './icons/PaperAirplane.svelte';
64
- export { default as PaperClip } from './icons/PaperClip.svelte';
65
- export { default as Photo } from './icons/Photo.svelte';
66
- export { default as QrCode } from './icons/QrCode.svelte';
67
- export { default as QuoteLeft } from './icons/QuoteLeft.svelte';
68
55
  // Kbd
69
56
  export { default as Kbd } from './kbd/Kbd.svelte';
70
57
  export { default as ArrowKeyDown } from './kbd/ArrowKeyDown.svelte';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.25.18",
3
+ "version": "0.25.21",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "main": "index.js",
6
6
  "author": {
@@ -147,18 +147,6 @@
147
147
  "./forms/Textarea.svelte": "./forms/Textarea.svelte",
148
148
  "./forms/Toggle.svelte": "./forms/Toggle.svelte",
149
149
  "./forms/VoiceSearch.svelte": "./forms/VoiceSearch.svelte",
150
- "./icons/CodeBracket.svelte": "./icons/CodeBracket.svelte",
151
- "./icons/Envelope.svelte": "./icons/Envelope.svelte",
152
- "./icons/FaceSmile.svelte": "./icons/FaceSmile.svelte",
153
- "./icons/Figma.svelte": "./icons/Figma.svelte",
154
- "./icons/Home.svelte": "./icons/Home.svelte",
155
- "./icons/Map.svelte": "./icons/Map.svelte",
156
- "./icons/MapPin.svelte": "./icons/MapPin.svelte",
157
- "./icons/PaperAirplane.svelte": "./icons/PaperAirplane.svelte",
158
- "./icons/PaperClip.svelte": "./icons/PaperClip.svelte",
159
- "./icons/Photo.svelte": "./icons/Photo.svelte",
160
- "./icons/QrCode.svelte": "./icons/QrCode.svelte",
161
- "./icons/QuoteLeft.svelte": "./icons/QuoteLeft.svelte",
162
150
  ".": "./index.js",
163
151
  "./kbd/ArrowKeyDown.svelte": "./kbd/ArrowKeyDown.svelte",
164
152
  "./kbd/ArrowKeyLeft.svelte": "./kbd/ArrowKeyLeft.svelte",
@@ -18,7 +18,8 @@ const colors = {
18
18
  gray: 'text-gray-500 bg-gray-100 dark:bg-gray-800 dark:text-gray-200',
19
19
  purple: 'text-purple-500 bg-purple-100 dark:bg-purple-800 dark:text-purple-200',
20
20
  indigo: 'text-indigo-500 bg-indigo-100 dark:bg-indigo-800 dark:text-indigo-200',
21
- yellow: 'text-yellow-500 bg-yellow-100 dark:bg-yellow-800 dark:text-yellow-200'
21
+ yellow: 'text-yellow-500 bg-yellow-100 dark:bg-yellow-800 dark:text-yellow-200',
22
+ pink: 'text-pink-500 bg-pink-100 dark:bg-pink-800 dark:text-pink-200'
22
23
  };
23
24
  // have a custom transition function that returns the desired transition
24
25
  let transitionFunc;
@@ -1,28 +1,23 @@
1
1
  <script>import classNames from 'classnames';
2
- export let divClass = 'inline-flex justify-center items-center w-full';
3
- export let hrClass = 'bg-gray-200 rounded border-0 dark:bg-gray-700';
4
- // bg-gray-200 rounded border-0 dark:bg-gray-700
2
+ export let icon = false;
5
3
  export let width = 'w-full';
6
4
  export let height = 'h-px';
7
- export let iconSize = 24;
8
- export let iconClass = 'text-gray-700 dark:text-gray-300';
9
- export let icon;
10
- export let text;
11
- export let iconDivClass = 'absolute left-1/2 px-4 bg-white -translate-x-1/2 dark:bg-gray-900';
12
- export let textSpanClass = 'absolute left-1/2 px-3 font-medium text-gray-900 bg-white -translate-x-1/2 dark:text-white dark:bg-gray-900';
5
+ export let divClass = 'inline-flex justify-center items-center w-full';
6
+ export let hrClass = 'bg-gray-200 rounded border-0 dark:bg-gray-700';
7
+ export let iconDivClass = 'absolute left-1/2 px-4 bg-white -translate-x-1/2 ';
8
+ export let textSpanClass = 'absolute left-1/2 px-3 font-medium text-gray-900 bg-white -translate-x-1/2 dark:text-white ';
9
+ export let middleBgColor = 'dark:bg-gray-900';
13
10
  let horizontalClass = classNames(hrClass, width, height, $$props.class);
11
+ let classDiv = classNames(divClass, $$slots && 'relative', $$props.classDiv);
12
+ let middleClass = classNames(middleBgColor, icon ? iconDivClass : textSpanClass);
14
13
  </script>
15
14
 
16
- {#if icon || text}
17
- <div class={classNames(divClass, $$props.classDiv)}>
15
+ {#if $$slots}
16
+ <div class={classDiv}>
18
17
  <hr class={horizontalClass} />
19
- {#if icon}
20
- <div class={iconDivClass}>
21
- <svelte:component this={icon} size={iconSize} class={iconClass} />
22
- </div>
23
- {:else}
24
- <span class={textSpanClass}>or</span>
25
- {/if}
18
+ <div class={middleClass}>
19
+ <slot />
20
+ </div>
26
21
  </div>
27
22
  {:else}
28
23
  <hr class={horizontalClass} />
@@ -1,23 +1,22 @@
1
1
  import { SvelteComponentTyped } from "svelte";
2
- import type { SvelteComponent } from 'svelte';
3
2
  declare const __propDef: {
4
3
  props: {
5
4
  [x: string]: any;
6
- divClass?: string;
7
- hrClass?: string;
5
+ icon?: boolean;
8
6
  width?: string;
9
7
  height?: string;
10
- iconSize?: number;
11
- iconClass?: string;
12
- icon: typeof SvelteComponent;
13
- text: string;
8
+ divClass?: string;
9
+ hrClass?: string;
14
10
  iconDivClass?: string;
15
11
  textSpanClass?: string;
12
+ middleBgColor?: string;
16
13
  };
17
14
  events: {
18
15
  [evt: string]: CustomEvent<any>;
19
16
  };
20
- slots: {};
17
+ slots: {
18
+ default: {};
19
+ };
21
20
  };
22
21
  export declare type HrProps = typeof __propDef.props;
23
22
  export declare type HrEvents = typeof __propDef.events;
@@ -1,38 +0,0 @@
1
- <script>// https://github.com/shinokada/svelte-heros-v2
2
- export let size = '24';
3
- export let color = 'currentColor';
4
- export let variation = 'outline';
5
- let viewBox;
6
- let svgpath;
7
- let svgoutline = `<path d="M17.25 6.75L22.5 12L17.25 17.25M6.75 17.25L1.5 12L6.75 6.75M14.25 3.75L9.75 20.25" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
8
- let svgsolid = `<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4473 3.02662C14.847 3.1356 15.0826 3.54791 14.9736 3.94753L10.4736 20.4475C10.3646 20.8471 9.95228 21.0827 9.55266 20.9738C9.15304 20.8648 8.91744 20.4525 9.02643 20.0529L13.5264 3.55285C13.6354 3.15323 14.0477 2.91763 14.4473 3.02662ZM16.7197 6.21986C17.0126 5.92696 17.4874 5.92696 17.7803 6.21986L23.0303 11.4699C23.3232 11.7628 23.3232 12.2376 23.0303 12.5305L17.7803 17.7805C17.4874 18.0734 17.0126 18.0734 16.7197 17.7805C16.4268 17.4876 16.4268 17.0128 16.7197 16.7199L21.4393 12.0002L16.7197 7.28052C16.4268 6.98762 16.4268 6.51275 16.7197 6.21986ZM7.28033 6.21986C7.57322 6.51275 7.57322 6.98763 7.28033 7.28052L2.56066 12.0002L7.28033 16.7199C7.57322 17.0128 7.57322 17.4876 7.28033 17.7805C6.98744 18.0734 6.51256 18.0734 6.21967 17.7805L0.96967 12.5305C0.676777 12.2376 0.676777 11.7628 0.96967 11.4699L6.21967 6.21986C6.51256 5.92697 6.98744 5.92697 7.28033 6.21986Z" fill="${color}"/> `;
9
- $: switch (variation) {
10
- case 'outline':
11
- svgpath = svgoutline;
12
- viewBox = '0 0 24 24';
13
- break;
14
- case 'solid':
15
- svgpath = svgsolid;
16
- viewBox = '0 0 24 24';
17
- break;
18
- default:
19
- svgpath = svgoutline;
20
- viewBox = '0 0 24 24';
21
- }
22
- export let ariaLabel = 'code bracket';
23
- </script>
24
-
25
- <svg
26
- xmlns="http://www.w3.org/2000/svg"
27
- width={size}
28
- height={size}
29
- class={$$props.class}
30
- {...$$restProps}
31
- aria-label={ariaLabel}
32
- fill="none"
33
- {viewBox}
34
- stroke-width="2"
35
- on:click
36
- >
37
- {@html svgpath}
38
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type CodeBracketProps = typeof __propDef.props;
18
- export declare type CodeBracketEvents = typeof __propDef.events;
19
- export declare type CodeBracketSlots = typeof __propDef.slots;
20
- export default class CodeBracket extends SvelteComponentTyped<CodeBracketProps, CodeBracketEvents, CodeBracketSlots> {
21
- }
22
- export {};
@@ -1,37 +0,0 @@
1
- <script>export let size = '24';
2
- export let color = 'currentColor';
3
- export let variation = 'outline';
4
- let viewBox;
5
- let svgpath;
6
- let svgoutline = `<path d="M21.75 6.75V17.25C21.75 18.4926 20.7426 19.5 19.5 19.5H4.5C3.25736 19.5 2.25 18.4926 2.25 17.25V6.75M21.75 6.75C21.75 5.50736 20.7426 4.5 19.5 4.5H4.5C3.25736 4.5 2.25 5.50736 2.25 6.75M21.75 6.75V6.99271C21.75 7.77405 21.3447 8.49945 20.6792 8.90894L13.1792 13.5243C12.4561 13.9694 11.5439 13.9694 10.8208 13.5243L3.32078 8.90894C2.65535 8.49945 2.25 7.77405 2.25 6.99271V6.75" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
7
- let svgsolid = `<path d="M1.5 8.6691V17.25C1.5 18.9069 2.84315 20.25 4.5 20.25H19.5C21.1569 20.25 22.5 18.9069 22.5 17.25V8.6691L13.5723 14.1631C12.6081 14.7564 11.3919 14.7564 10.4277 14.1631L1.5 8.6691Z" fill="${color}"/> <path d="M22.5 6.90783V6.75C22.5 5.09315 21.1569 3.75 19.5 3.75H4.5C2.84315 3.75 1.5 5.09315 1.5 6.75V6.90783L11.2139 12.8856C11.696 13.1823 12.304 13.1823 12.7861 12.8856L22.5 6.90783Z" fill="${color}"/> `;
8
- $: switch (variation) {
9
- case 'outline':
10
- svgpath = svgoutline;
11
- viewBox = '0 0 24 24';
12
- break;
13
- case 'solid':
14
- svgpath = svgsolid;
15
- viewBox = '0 0 24 24';
16
- break;
17
- default:
18
- svgpath = svgoutline;
19
- viewBox = '0 0 24 24';
20
- }
21
- export let ariaLabel = 'envelope';
22
- </script>
23
-
24
- <svg
25
- xmlns="http://www.w3.org/2000/svg"
26
- width={size}
27
- height={size}
28
- class={$$props.class}
29
- {...$$restProps}
30
- aria-label={ariaLabel}
31
- fill="none"
32
- {viewBox}
33
- stroke-width="2"
34
- on:click
35
- >
36
- {@html svgpath}
37
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type EnvelopeProps = typeof __propDef.props;
18
- export declare type EnvelopeEvents = typeof __propDef.events;
19
- export declare type EnvelopeSlots = typeof __propDef.slots;
20
- export default class Envelope extends SvelteComponentTyped<EnvelopeProps, EnvelopeEvents, EnvelopeSlots> {
21
- }
22
- export {};
@@ -1,38 +0,0 @@
1
- <script>// https://github.com/shinokada/svelte-heros-v2
2
- export let size = '24';
3
- export let color = 'currentColor';
4
- export let variation = 'outline';
5
- let viewBox;
6
- let svgpath;
7
- let svgoutline = `<path d="M15.182 15.182C13.4246 16.9393 10.5754 16.9393 8.81802 15.182M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12ZM9.75 9.75C9.75 10.1642 9.58211 10.5 9.375 10.5C9.16789 10.5 9 10.1642 9 9.75C9 9.33579 9.16789 9 9.375 9C9.58211 9 9.75 9.33579 9.75 9.75ZM9.375 9.75H9.3825V9.765H9.375V9.75ZM15 9.75C15 10.1642 14.8321 10.5 14.625 10.5C14.4179 10.5 14.25 10.1642 14.25 9.75C14.25 9.33579 14.4179 9 14.625 9C14.8321 9 15 9.33579 15 9.75ZM14.625 9.75H14.6325V9.765H14.625V9.75Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
8
- let svgsolid = `<path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75C17.3848 21.75 21.75 17.3848 21.75 12C21.75 6.61522 17.3848 2.25 12 2.25ZM9.375 8.25C8.83433 8.25 8.54674 8.66881 8.43901 8.88426C8.30886 9.14457 8.25 9.45171 8.25 9.75C8.25 10.0483 8.30886 10.3554 8.43901 10.6157C8.54674 10.8312 8.83433 11.25 9.375 11.25C9.91567 11.25 10.2033 10.8312 10.311 10.6157C10.4411 10.3554 10.5 10.0483 10.5 9.75C10.5 9.45171 10.4411 9.14457 10.311 8.88426C10.2033 8.66881 9.91567 8.25 9.375 8.25ZM13.689 8.88426C13.7967 8.66881 14.0843 8.25 14.625 8.25C15.1657 8.25 15.4533 8.66881 15.561 8.88426C15.6911 9.14457 15.75 9.45171 15.75 9.75C15.75 10.0483 15.6911 10.3554 15.561 10.6157C15.4533 10.8312 15.1657 11.25 14.625 11.25C14.0843 11.25 13.7967 10.8312 13.689 10.6157C13.5589 10.3554 13.5 10.0483 13.5 9.75C13.5 9.45171 13.5589 9.14457 13.689 8.88426ZM15.7123 15.7123C16.0052 15.4194 16.0052 14.9446 15.7123 14.6517C15.4194 14.3588 14.9445 14.3588 14.6517 14.6517C13.1872 16.1161 10.8128 16.1161 9.34835 14.6517C9.05546 14.3588 8.58058 14.3588 8.28769 14.6517C7.9948 14.9446 7.9948 15.4194 8.28769 15.7123C10.3379 17.7626 13.6621 17.7626 15.7123 15.7123Z" fill="${color}"/> `;
9
- $: switch (variation) {
10
- case 'outline':
11
- svgpath = svgoutline;
12
- viewBox = '0 0 24 24';
13
- break;
14
- case 'solid':
15
- svgpath = svgsolid;
16
- viewBox = '0 0 24 24';
17
- break;
18
- default:
19
- svgpath = svgoutline;
20
- viewBox = '0 0 24 24';
21
- }
22
- export let ariaLabel = 'face smile';
23
- </script>
24
-
25
- <svg
26
- xmlns="http://www.w3.org/2000/svg"
27
- width={size}
28
- height={size}
29
- class={$$props.class}
30
- {...$$restProps}
31
- aria-label={ariaLabel}
32
- fill="none"
33
- {viewBox}
34
- stroke-width="2"
35
- on:click
36
- >
37
- {@html svgpath}
38
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type FaceSmileProps = typeof __propDef.props;
18
- export declare type FaceSmileEvents = typeof __propDef.events;
19
- export declare type FaceSmileSlots = typeof __propDef.slots;
20
- export default class FaceSmile extends SvelteComponentTyped<FaceSmileProps, FaceSmileEvents, FaceSmileSlots> {
21
- }
22
- export {};
@@ -1,34 +0,0 @@
1
- <svg
2
- aria-hidden="true"
3
- class="mr-3 w-5 h-5"
4
- viewBox="0 0 22 31"
5
- fill="none"
6
- xmlns="http://www.w3.org/2000/svg"
7
- ><g clip-path="url(#clip0_4151_63004)"
8
- ><path
9
- d="M5.50085 30.1242C8.53625 30.1242 10.9998 27.8749 10.9998 25.1035V20.0828H5.50085C2.46546 20.0828 0.00195312 22.332 0.00195312 25.1035C0.00195312 27.8749 2.46546 30.1242 5.50085 30.1242Z"
10
- fill="#0ACF83"
11
- /><path
12
- d="M0.00195312 15.062C0.00195312 12.2905 2.46546 10.0413 5.50085 10.0413H10.9998V20.0827H5.50085C2.46546 20.0827 0.00195312 17.8334 0.00195312 15.062Z"
13
- fill="#A259FF"
14
- /><path
15
- d="M0.00195312 5.02048C0.00195312 2.24904 2.46546 -0.000244141 5.50085 -0.000244141H10.9998V10.0412H5.50085C2.46546 10.0412 0.00195312 7.79193 0.00195312 5.02048Z"
16
- fill="#F24E1E"
17
- /><path
18
- d="M11 -0.000244141H16.4989C19.5343 -0.000244141 21.9978 2.24904 21.9978 5.02048C21.9978 7.79193 19.5343 10.0412 16.4989 10.0412H11V-0.000244141Z"
19
- fill="#FF7262"
20
- /><path
21
- d="M21.9978 15.062C21.9978 17.8334 19.5343 20.0827 16.4989 20.0827C13.4635 20.0827 11 17.8334 11 15.062C11 12.2905 13.4635 10.0413 16.4989 10.0413C19.5343 10.0413 21.9978 12.2905 21.9978 15.062Z"
22
- fill="#1ABCFE"
23
- /></g
24
- ><defs
25
- ><clipPath id="clip0_4151_63004"
26
- ><rect
27
- width="22"
28
- height="30.1244"
29
- fill="white"
30
- transform="translate(0 -0.000244141)"
31
- /></clipPath
32
- ></defs
33
- ></svg
34
- >
@@ -1,19 +0,0 @@
1
- /** @typedef {typeof __propDef.props} FigmaProps */
2
- /** @typedef {typeof __propDef.events} FigmaEvents */
3
- /** @typedef {typeof __propDef.slots} FigmaSlots */
4
- export default class Figma extends SvelteComponentTyped<{}, {
5
- [evt: string]: CustomEvent<any>;
6
- }, {}> {
7
- }
8
- export type FigmaProps = typeof __propDef.props;
9
- export type FigmaEvents = typeof __propDef.events;
10
- export type FigmaSlots = typeof __propDef.slots;
11
- import { SvelteComponentTyped } from "svelte";
12
- declare const __propDef: {
13
- props: {};
14
- events: {
15
- [evt: string]: CustomEvent<any>;
16
- };
17
- slots: {};
18
- };
19
- export {};
package/icons/Home.svelte DELETED
@@ -1,37 +0,0 @@
1
- <script>export let size = '24';
2
- export let color = 'currentColor';
3
- export let variation = 'outline';
4
- let viewBox;
5
- let svgpath;
6
- let svgoutline = `<path d="M2.25 11.9998L11.2045 3.04533C11.6438 2.60599 12.3562 2.60599 12.7955 3.04532L21.75 11.9998M4.5 9.74983V19.8748C4.5 20.4961 5.00368 20.9998 5.625 20.9998H9.75V16.1248C9.75 15.5035 10.2537 14.9998 10.875 14.9998H13.125C13.7463 14.9998 14.25 15.5035 14.25 16.1248V20.9998H18.375C18.9963 20.9998 19.5 20.4962 19.5 19.8748V9.74983M8.25 20.9998H16.5" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
7
- let svgsolid = `<path d="M11.4697 3.84076C11.7626 3.54787 12.2374 3.54787 12.5303 3.84076L21.2197 12.5301C21.5126 12.823 21.9874 12.823 22.2803 12.5301C22.5732 12.2372 22.5732 11.7623 22.2803 11.4694L13.591 2.7801C12.7123 1.90142 11.2877 1.90142 10.409 2.7801L1.71967 11.4694C1.42678 11.7623 1.42678 12.2372 1.71967 12.5301C2.01256 12.823 2.48744 12.823 2.78033 12.5301L11.4697 3.84076Z" fill="${color}"/> <path d="M12 5.43176L20.159 13.5908C20.1887 13.6205 20.2191 13.6492 20.25 13.6769V19.8748C20.25 20.9103 19.4105 21.7498 18.375 21.7498H15C14.5858 21.7498 14.25 21.414 14.25 20.9998V16.4998C14.25 16.0856 13.9142 15.7498 13.5 15.7498H10.5C10.0858 15.7498 9.75 16.0856 9.75 16.4998V20.9998C9.75 21.414 9.41421 21.7498 9 21.7498H5.625C4.58947 21.7498 3.75 20.9103 3.75 19.8748V13.6769C3.78093 13.6492 3.81127 13.6205 3.84099 13.5908L12 5.43176Z" fill="${color}"/> `;
8
- $: switch (variation) {
9
- case 'outline':
10
- svgpath = svgoutline;
11
- viewBox = '0 0 24 24';
12
- break;
13
- case 'solid':
14
- svgpath = svgsolid;
15
- viewBox = '0 0 24 24';
16
- break;
17
- default:
18
- svgpath = svgoutline;
19
- viewBox = '0 0 24 24';
20
- }
21
- export let ariaLabel = 'home';
22
- </script>
23
-
24
- <svg
25
- xmlns="http://www.w3.org/2000/svg"
26
- width={size}
27
- height={size}
28
- class={$$props.class}
29
- {...$$restProps}
30
- aria-label={ariaLabel}
31
- fill="none"
32
- {viewBox}
33
- stroke-width="2"
34
- on:click
35
- >
36
- {@html svgpath}
37
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type HomeProps = typeof __propDef.props;
18
- export declare type HomeEvents = typeof __propDef.events;
19
- export declare type HomeSlots = typeof __propDef.slots;
20
- export default class Home extends SvelteComponentTyped<HomeProps, HomeEvents, HomeSlots> {
21
- }
22
- export {};
package/icons/Map.svelte DELETED
@@ -1,38 +0,0 @@
1
- <script>// https://github.com/shinokada/svelte-heros-v2
2
- export let size = '24';
3
- export let color = 'currentColor';
4
- export let variation = 'outline';
5
- let viewBox;
6
- let svgpath;
7
- let svgoutline = `<path d="M9 6.75002V15M15 9.00002V17.25M15.5031 20.7485L20.3781 18.311C20.7592 18.1204 21 17.7309 21 17.3047V4.82031C21 3.98401 20.1199 3.44007 19.3719 3.81408L15.5031 5.74847C15.1864 5.90683 14.8136 5.90683 14.4969 5.74847L9.50312 3.25158C9.1864 3.09322 8.8136 3.09322 8.49688 3.25158L3.62188 5.68908C3.24075 5.87965 3 6.26919 3 6.69531V19.1797C3 20.016 3.8801 20.56 4.62811 20.186L8.49688 18.2516C8.8136 18.0932 9.1864 18.0932 9.50312 18.2516L14.4969 20.7485C14.8136 20.9068 15.1864 20.9068 15.5031 20.7485Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
8
- let svgsolid = `<path fill-rule="evenodd" clip-rule="evenodd" d="M8.16147 2.58076C8.68934 2.31683 9.31066 2.31683 9.83853 2.58076L14.8323 5.07765C14.9379 5.13043 15.0621 5.13043 15.1677 5.07765L19.0365 3.14326C20.2832 2.51992 21.75 3.42647 21.75 4.82031V17.3047C21.75 18.0149 21.3487 18.6642 20.7135 18.9818L15.8385 21.4193C15.3107 21.6832 14.6893 21.6832 14.1615 21.4193L9.16771 18.9224C9.06213 18.8696 8.93787 18.8696 8.8323 18.9224L4.96353 20.8568C3.71683 21.4801 2.25 20.5736 2.25 19.1797V6.69531C2.25 5.98512 2.65125 5.33587 3.28647 5.01826L8.16147 2.58076ZM9 6.00002C9.41421 6.00002 9.75 6.3358 9.75 6.75002V15C9.75 15.4142 9.41421 15.75 9 15.75C8.58579 15.75 8.25 15.4142 8.25 15V6.75002C8.25 6.3358 8.58579 6.00002 9 6.00002ZM15.75 9.00002C15.75 8.5858 15.4142 8.25002 15 8.25002C14.5858 8.25002 14.25 8.5858 14.25 9.00002V17.25C14.25 17.6642 14.5858 18 15 18C15.4142 18 15.75 17.6642 15.75 17.25V9.00002Z" fill="${color}"/> `;
9
- $: switch (variation) {
10
- case 'outline':
11
- svgpath = svgoutline;
12
- viewBox = '0 0 24 24';
13
- break;
14
- case 'solid':
15
- svgpath = svgsolid;
16
- viewBox = '0 0 24 24';
17
- break;
18
- default:
19
- svgpath = svgoutline;
20
- viewBox = '0 0 24 24';
21
- }
22
- export let ariaLabel = 'map';
23
- </script>
24
-
25
- <svg
26
- xmlns="http://www.w3.org/2000/svg"
27
- width={size}
28
- height={size}
29
- class={$$props.class}
30
- {...$$restProps}
31
- aria-label={ariaLabel}
32
- fill="none"
33
- {viewBox}
34
- stroke-width="2"
35
- on:click
36
- >
37
- {@html svgpath}
38
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type MapProps = typeof __propDef.props;
18
- export declare type MapEvents = typeof __propDef.events;
19
- export declare type MapSlots = typeof __propDef.slots;
20
- export default class Map extends SvelteComponentTyped<MapProps, MapEvents, MapSlots> {
21
- }
22
- export {};
@@ -1,37 +0,0 @@
1
- <script>export let size = '24';
2
- export let color = 'currentColor';
3
- export let variation = 'outline';
4
- let viewBox;
5
- let svgpath;
6
- let svgoutline = `<path d="M15 10.5C15 12.1569 13.6569 13.5 12 13.5C10.3431 13.5 9 12.1569 9 10.5C9 8.84315 10.3431 7.5 12 7.5C13.6569 7.5 15 8.84315 15 10.5Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M19.5 10.5C19.5 17.6421 12 21.75 12 21.75C12 21.75 4.5 17.6421 4.5 10.5C4.5 6.35786 7.85786 3 12 3C16.1421 3 19.5 6.35786 19.5 10.5Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
7
- let svgsolid = `<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5397 22.351C11.57 22.3686 11.5937 22.3821 11.6105 22.3915L11.6384 22.4071C11.8613 22.5294 12.1378 22.5285 12.3608 22.4075L12.3895 22.3915C12.4063 22.3821 12.43 22.3686 12.4603 22.351C12.5207 22.316 12.607 22.265 12.7155 22.1982C12.9325 22.0646 13.2388 21.8676 13.6046 21.6091C14.3351 21.0931 15.3097 20.3274 16.2865 19.3273C18.2307 17.3368 20.25 14.3462 20.25 10.5C20.25 5.94365 16.5563 2.25 12 2.25C7.44365 2.25 3.75 5.94365 3.75 10.5C3.75 14.3462 5.76932 17.3368 7.71346 19.3273C8.69025 20.3274 9.66491 21.0931 10.3954 21.6091C10.7612 21.8676 11.0675 22.0646 11.2845 22.1982C11.393 22.265 11.4793 22.316 11.5397 22.351ZM12 13.5C13.6569 13.5 15 12.1569 15 10.5C15 8.84315 13.6569 7.5 12 7.5C10.3431 7.5 9 8.84315 9 10.5C9 12.1569 10.3431 13.5 12 13.5Z" fill="${color}"/> `;
8
- $: switch (variation) {
9
- case 'outline':
10
- svgpath = svgoutline;
11
- viewBox = '0 0 24 24';
12
- break;
13
- case 'solid':
14
- svgpath = svgsolid;
15
- viewBox = '0 0 24 24';
16
- break;
17
- default:
18
- svgpath = svgoutline;
19
- viewBox = '0 0 24 24';
20
- }
21
- export let ariaLabel = 'map pin';
22
- </script>
23
-
24
- <svg
25
- xmlns="http://www.w3.org/2000/svg"
26
- width={size}
27
- height={size}
28
- class={$$props.class}
29
- {...$$restProps}
30
- aria-label={ariaLabel}
31
- fill="none"
32
- {viewBox}
33
- stroke-width="2"
34
- on:click
35
- >
36
- {@html svgpath}
37
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type MapPinProps = typeof __propDef.props;
18
- export declare type MapPinEvents = typeof __propDef.events;
19
- export declare type MapPinSlots = typeof __propDef.slots;
20
- export default class MapPin extends SvelteComponentTyped<MapPinProps, MapPinEvents, MapPinSlots> {
21
- }
22
- export {};
@@ -1,37 +0,0 @@
1
- <script>export let size = '24';
2
- export let color = 'currentColor';
3
- export let variation = 'outline';
4
- let viewBox;
5
- let svgpath;
6
- let svgoutline = `<path d="M5.99972 12.0005L3.2688 3.125C9.88393 5.04665 16.0276 8.07649 21.4855 12.0002C16.0276 15.924 9.884 18.9539 3.26889 20.8757L5.99972 12.0005ZM5.99972 12.0005L13.5 12.0005" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
7
- let svgsolid = `<path d="M3.47804 2.40479C3.2133 2.32789 2.92771 2.40242 2.73432 2.59889C2.54093 2.79536 2.47091 3.08209 2.55198 3.34558L4.98426 11.2505H13.5C13.9142 11.2505 14.25 11.5863 14.25 12.0005C14.25 12.4147 13.9142 12.7505 13.5 12.7505H4.98427L2.55207 20.6551C2.471 20.9186 2.54102 21.2054 2.73441 21.4018C2.92781 21.5983 3.2134 21.6728 3.47814 21.5959C10.1767 19.6499 16.3974 16.5819 21.9233 12.6092C22.1193 12.4683 22.2355 12.2416 22.2355 12.0002C22.2355 11.7588 22.1193 11.5322 21.9233 11.3913C16.3974 7.41866 10.1767 4.3507 3.47804 2.40479Z" fill="${color}"/> `;
8
- $: switch (variation) {
9
- case 'outline':
10
- svgpath = svgoutline;
11
- viewBox = '0 0 24 24';
12
- break;
13
- case 'solid':
14
- svgpath = svgsolid;
15
- viewBox = '0 0 24 24';
16
- break;
17
- default:
18
- svgpath = svgoutline;
19
- viewBox = '0 0 24 24';
20
- }
21
- export let ariaLabel = 'paper airplane';
22
- </script>
23
-
24
- <svg
25
- xmlns="http://www.w3.org/2000/svg"
26
- width={size}
27
- height={size}
28
- class={$$props.class}
29
- {...$$restProps}
30
- aria-label={ariaLabel}
31
- fill="none"
32
- {viewBox}
33
- stroke-width="2"
34
- on:click
35
- >
36
- {@html svgpath}
37
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type PaperAirplaneProps = typeof __propDef.props;
18
- export declare type PaperAirplaneEvents = typeof __propDef.events;
19
- export declare type PaperAirplaneSlots = typeof __propDef.slots;
20
- export default class PaperAirplane extends SvelteComponentTyped<PaperAirplaneProps, PaperAirplaneEvents, PaperAirplaneSlots> {
21
- }
22
- export {};
@@ -1,38 +0,0 @@
1
- <script>// https://github.com/shinokada/svelte-heros-v2
2
- export let size = '24';
3
- export let color = 'currentColor';
4
- export let variation = 'outline';
5
- let viewBox;
6
- let svgpath;
7
- let svgoutline = `<path d="M18.375 12.739L10.682 20.432C8.92462 22.1893 6.07538 22.1893 4.31802 20.432C2.56066 18.6746 2.56066 15.8254 4.31802 14.068L15.2573 3.12868C16.4289 1.95711 18.3283 1.95711 19.4999 3.12868C20.6715 4.30025 20.6715 6.19975 19.4999 7.37132L8.55158 18.3197M8.56066 18.3107C8.55764 18.3137 8.55462 18.3167 8.55158 18.3197M14.2498 8.37865L6.43934 16.1893C5.85355 16.7751 5.85355 17.7249 6.43934 18.3107C7.02211 18.8934 7.9651 18.8964 8.55158 18.3197" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
8
- let svgsolid = `<path fill-rule="evenodd" clip-rule="evenodd" d="M18.9696 3.65901C18.0909 2.78033 16.6663 2.78033 15.7876 3.65901L4.84835 14.5983C3.38388 16.0628 3.38388 18.4372 4.84835 19.9016C6.31282 21.3661 8.68718 21.3661 10.1517 19.9016L17.8446 12.2087C18.1375 11.9158 18.6124 11.9158 18.9053 12.2087C19.1982 12.5015 19.1982 12.9764 18.9053 13.2693L11.2123 20.9623C9.16206 23.0126 5.83794 23.0126 3.78769 20.9623C1.73744 18.9121 1.73744 15.5879 3.78769 13.5377L14.7269 2.59835C16.1914 1.13388 18.5658 1.13388 20.0302 2.59835C21.4947 4.06281 21.4947 6.43718 20.0302 7.90165L9.09735 18.8346C9.09452 18.8374 9.09167 18.8403 9.08878 18.8432L9.08191 18.85L9.07971 18.8522L9.07747 18.8544C8.19765 19.7196 6.78319 19.7152 5.90901 18.841C5.03033 17.9623 5.03033 16.5377 5.90901 15.659L13.7195 7.84833C14.0124 7.55543 14.4873 7.55542 14.7802 7.84831C15.0731 8.1412 15.0731 8.61608 14.7802 8.90897L6.96968 16.7197C6.67678 17.0125 6.67678 17.4874 6.96967 17.7803C7.26041 18.0711 7.73056 18.0732 8.02383 17.7867L18.9696 6.84099C19.8483 5.96231 19.8483 4.53769 18.9696 3.65901Z" fill="${color}"/> `;
9
- $: switch (variation) {
10
- case 'outline':
11
- svgpath = svgoutline;
12
- viewBox = '0 0 24 24';
13
- break;
14
- case 'solid':
15
- svgpath = svgsolid;
16
- viewBox = '0 0 24 24';
17
- break;
18
- default:
19
- svgpath = svgoutline;
20
- viewBox = '0 0 24 24';
21
- }
22
- export let ariaLabel = 'paper clip';
23
- </script>
24
-
25
- <svg
26
- xmlns="http://www.w3.org/2000/svg"
27
- width={size}
28
- height={size}
29
- class={$$props.class}
30
- {...$$restProps}
31
- aria-label={ariaLabel}
32
- fill="none"
33
- {viewBox}
34
- stroke-width="2"
35
- on:click
36
- >
37
- {@html svgpath}
38
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type PaperClipProps = typeof __propDef.props;
18
- export declare type PaperClipEvents = typeof __propDef.events;
19
- export declare type PaperClipSlots = typeof __propDef.slots;
20
- export default class PaperClip extends SvelteComponentTyped<PaperClipProps, PaperClipEvents, PaperClipSlots> {
21
- }
22
- export {};
@@ -1,38 +0,0 @@
1
- <script>// https://github.com/shinokada/svelte-heros-v2
2
- export let size = '24';
3
- export let color = 'currentColor';
4
- export let variation = 'outline';
5
- let viewBox;
6
- let svgpath;
7
- let svgoutline = `<path d="M2.25 15.75L7.40901 10.591C8.28769 9.71231 9.71231 9.71231 10.591 10.591L15.75 15.75M14.25 14.25L15.659 12.841C16.5377 11.9623 17.9623 11.9623 18.841 12.841L21.75 15.75M3.75 19.5H20.25C21.0784 19.5 21.75 18.8284 21.75 18V6C21.75 5.17157 21.0784 4.5 20.25 4.5H3.75C2.92157 4.5 2.25 5.17157 2.25 6V18C2.25 18.8284 2.92157 19.5 3.75 19.5ZM14.25 8.25H14.2575V8.2575H14.25V8.25ZM14.625 8.25C14.625 8.45711 14.4571 8.625 14.25 8.625C14.0429 8.625 13.875 8.45711 13.875 8.25C13.875 8.04289 14.0429 7.875 14.25 7.875C14.4571 7.875 14.625 8.04289 14.625 8.25Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
8
- let svgsolid = `<path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 6C1.5 4.75736 2.50736 3.75 3.75 3.75H20.25C21.4926 3.75 22.5 4.75736 22.5 6V18C22.5 19.2426 21.4926 20.25 20.25 20.25H3.75C2.50736 20.25 1.5 19.2426 1.5 18V6ZM3 16.0607V18C3 18.4142 3.33579 18.75 3.75 18.75H20.25C20.6642 18.75 21 18.4142 21 18V16.0607L18.3107 13.3713C17.7249 12.7855 16.7751 12.7855 16.1893 13.3713L15.3107 14.25L16.2803 15.2197C16.5732 15.5126 16.5732 15.9874 16.2803 16.2803C15.9874 16.5732 15.5126 16.5732 15.2197 16.2803L10.0607 11.1213C9.47487 10.5355 8.52513 10.5355 7.93934 11.1213L3 16.0607ZM13.125 8.25C13.125 7.62868 13.6287 7.125 14.25 7.125C14.8713 7.125 15.375 7.62868 15.375 8.25C15.375 8.87132 14.8713 9.375 14.25 9.375C13.6287 9.375 13.125 8.87132 13.125 8.25Z" fill="${color}"/> `;
9
- $: switch (variation) {
10
- case 'outline':
11
- svgpath = svgoutline;
12
- viewBox = '0 0 24 24';
13
- break;
14
- case 'solid':
15
- svgpath = svgsolid;
16
- viewBox = '0 0 24 24';
17
- break;
18
- default:
19
- svgpath = svgoutline;
20
- viewBox = '0 0 24 24';
21
- }
22
- export let ariaLabel = 'photo';
23
- </script>
24
-
25
- <svg
26
- xmlns="http://www.w3.org/2000/svg"
27
- width={size}
28
- height={size}
29
- class={$$props.class}
30
- {...$$restProps}
31
- aria-label={ariaLabel}
32
- fill="none"
33
- {viewBox}
34
- stroke-width="2"
35
- on:click
36
- >
37
- {@html svgpath}
38
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type PhotoProps = typeof __propDef.props;
18
- export declare type PhotoEvents = typeof __propDef.events;
19
- export declare type PhotoSlots = typeof __propDef.slots;
20
- export default class Photo extends SvelteComponentTyped<PhotoProps, PhotoEvents, PhotoSlots> {
21
- }
22
- export {};
@@ -1,37 +0,0 @@
1
- <script>export let size = '24';
2
- export let color = 'currentColor';
3
- export let variation = 'outline';
4
- let viewBox;
5
- let svgpath;
6
- let svgoutline = `<path d="M3.75 4.875C3.75 4.25368 4.25368 3.75 4.875 3.75H9.375C9.99632 3.75 10.5 4.25368 10.5 4.875V9.375C10.5 9.99632 9.99632 10.5 9.375 10.5H4.875C4.25368 10.5 3.75 9.99632 3.75 9.375V4.875Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M3.75 14.625C3.75 14.0037 4.25368 13.5 4.875 13.5H9.375C9.99632 13.5 10.5 14.0037 10.5 14.625V19.125C10.5 19.7463 9.99632 20.25 9.375 20.25H4.875C4.25368 20.25 3.75 19.7463 3.75 19.125V14.625Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.5 4.875C13.5 4.25368 14.0037 3.75 14.625 3.75H19.125C19.7463 3.75 20.25 4.25368 20.25 4.875V9.375C20.25 9.99632 19.7463 10.5 19.125 10.5H14.625C14.0037 10.5 13.5 9.99632 13.5 9.375V4.875Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.75 6.75H7.5V7.5H6.75V6.75Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.75 16.5H7.5V17.25H6.75V16.5Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M16.5 6.75H17.25V7.5H16.5V6.75Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.5 13.5H14.25V14.25H13.5V13.5Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.5 19.5H14.25V20.25H13.5V19.5Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M19.5 13.5H20.25V14.25H19.5V13.5Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M19.5 19.5H20.25V20.25H19.5V19.5Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M16.5 16.5H17.25V17.25H16.5V16.5Z" stroke="${color}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> `;
7
- let svgsolid = `<path fill-rule="evenodd" clip-rule="evenodd" d="M3 4.875C3 3.83947 3.83947 3 4.875 3H9.375C10.4105 3 11.25 3.83947 11.25 4.875V9.375C11.25 10.4105 10.4105 11.25 9.375 11.25H4.875C3.83947 11.25 3 10.4105 3 9.375V4.875ZM4.875 4.5C4.66789 4.5 4.5 4.66789 4.5 4.875V9.375C4.5 9.58211 4.66789 9.75 4.875 9.75H9.375C9.58211 9.75 9.75 9.58211 9.75 9.375V4.875C9.75 4.66789 9.58211 4.5 9.375 4.5H4.875ZM12.75 4.875C12.75 3.83947 13.5895 3 14.625 3H19.125C20.1605 3 21 3.83947 21 4.875V9.375C21 10.4105 20.1605 11.25 19.125 11.25H14.625C13.5895 11.25 12.75 10.4105 12.75 9.375V4.875ZM14.625 4.5C14.4179 4.5 14.25 4.66789 14.25 4.875V9.375C14.25 9.58211 14.4179 9.75 14.625 9.75H19.125C19.3321 9.75 19.5 9.58211 19.5 9.375V4.875C19.5 4.66789 19.3321 4.5 19.125 4.5H14.625ZM6 6.75C6 6.33579 6.33579 6 6.75 6H7.5C7.91421 6 8.25 6.33579 8.25 6.75V7.5C8.25 7.91421 7.91421 8.25 7.5 8.25H6.75C6.33579 8.25 6 7.91421 6 7.5V6.75ZM15.75 6.75C15.75 6.33579 16.0858 6 16.5 6H17.25C17.6642 6 18 6.33579 18 6.75V7.5C18 7.91421 17.6642 8.25 17.25 8.25H16.5C16.0858 8.25 15.75 7.91421 15.75 7.5V6.75ZM3 14.625C3 13.5895 3.83947 12.75 4.875 12.75H9.375C10.4105 12.75 11.25 13.5895 11.25 14.625V19.125C11.25 20.1605 10.4105 21 9.375 21H4.875C3.83947 21 3 20.1605 3 19.125V14.625ZM4.875 14.25C4.66789 14.25 4.5 14.4179 4.5 14.625V19.125C4.5 19.3321 4.66789 19.5 4.875 19.5H9.375C9.58211 19.5 9.75 19.3321 9.75 19.125V14.625C9.75 14.4179 9.58211 14.25 9.375 14.25H4.875ZM12.75 13.5C12.75 13.0858 13.0858 12.75 13.5 12.75H14.25C14.6642 12.75 15 13.0858 15 13.5V14.25C15 14.6642 14.6642 15 14.25 15H13.5C13.0858 15 12.75 14.6642 12.75 14.25V13.5ZM18.75 13.5C18.75 13.0858 19.0858 12.75 19.5 12.75H20.25C20.6642 12.75 21 13.0858 21 13.5V14.25C21 14.6642 20.6642 15 20.25 15H19.5C19.0858 15 18.75 14.6642 18.75 14.25V13.5ZM6 16.5C6 16.0858 6.33579 15.75 6.75 15.75H7.5C7.91421 15.75 8.25 16.0858 8.25 16.5V17.25C8.25 17.6642 7.91421 18 7.5 18H6.75C6.33579 18 6 17.6642 6 17.25V16.5ZM15.75 16.5C15.75 16.0858 16.0858 15.75 16.5 15.75H17.25C17.6642 15.75 18 16.0858 18 16.5V17.25C18 17.6642 17.6642 18 17.25 18H16.5C16.0858 18 15.75 17.6642 15.75 17.25V16.5ZM12.75 19.5C12.75 19.0858 13.0858 18.75 13.5 18.75H14.25C14.6642 18.75 15 19.0858 15 19.5V20.25C15 20.6642 14.6642 21 14.25 21H13.5C13.0858 21 12.75 20.6642 12.75 20.25V19.5ZM18.75 19.5C18.75 19.0858 19.0858 18.75 19.5 18.75H20.25C20.6642 18.75 21 19.0858 21 19.5V20.25C21 20.6642 20.6642 21 20.25 21H19.5C19.0858 21 18.75 20.6642 18.75 20.25V19.5Z" fill="${color}"/> `;
8
- $: switch (variation) {
9
- case 'outline':
10
- svgpath = svgoutline;
11
- viewBox = '0 0 24 24';
12
- break;
13
- case 'solid':
14
- svgpath = svgsolid;
15
- viewBox = '0 0 24 24';
16
- break;
17
- default:
18
- svgpath = svgoutline;
19
- viewBox = '0 0 24 24';
20
- }
21
- export let ariaLabel = 'qr code';
22
- </script>
23
-
24
- <svg
25
- xmlns="http://www.w3.org/2000/svg"
26
- width={size}
27
- height={size}
28
- class={$$props.class}
29
- {...$$restProps}
30
- aria-label={ariaLabel}
31
- fill="none"
32
- {viewBox}
33
- stroke-width="2"
34
- on:click
35
- >
36
- {@html svgpath}
37
- </svg>
@@ -1,22 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- variation?: 'solid' | 'outline';
8
- ariaLabel?: string;
9
- };
10
- events: {
11
- click: MouseEvent;
12
- } & {
13
- [evt: string]: CustomEvent<any>;
14
- };
15
- slots: {};
16
- };
17
- export declare type QrCodeProps = typeof __propDef.props;
18
- export declare type QrCodeEvents = typeof __propDef.events;
19
- export declare type QrCodeSlots = typeof __propDef.slots;
20
- export default class QrCode extends SvelteComponentTyped<QrCodeProps, QrCodeEvents, QrCodeSlots> {
21
- }
22
- export {};
@@ -1,17 +0,0 @@
1
- <script>export let size = '24';
2
- export let color = 'currentColor';
3
- </script>
4
-
5
- <svg
6
- aria-hidden="true"
7
- width={size}
8
- height={size}
9
- class={$$props.class}
10
- viewBox="0 0 24 27"
11
- fill="none"
12
- xmlns="http://www.w3.org/2000/svg"
13
- ><path
14
- d="M14.017 18L14.017 10.609C14.017 4.905 17.748 1.039 23 0L23.995 2.151C21.563 3.068 20 5.789 20 8H24V18H14.017ZM0 18V10.609C0 4.905 3.748 1.038 9 0L9.996 2.151C7.563 3.068 6 5.789 6 8H9.983L9.983 18L0 18Z"
15
- fill={color}
16
- /></svg
17
- >
@@ -1,18 +0,0 @@
1
- import { SvelteComponentTyped } from "svelte";
2
- declare const __propDef: {
3
- props: {
4
- [x: string]: any;
5
- size?: string;
6
- color?: string;
7
- };
8
- events: {
9
- [evt: string]: CustomEvent<any>;
10
- };
11
- slots: {};
12
- };
13
- export declare type QuoteLeftProps = typeof __propDef.props;
14
- export declare type QuoteLeftEvents = typeof __propDef.events;
15
- export declare type QuoteLeftSlots = typeof __propDef.slots;
16
- export default class QuoteLeft extends SvelteComponentTyped<QuoteLeftProps, QuoteLeftEvents, QuoteLeftSlots> {
17
- }
18
- export {};