-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4b579b
commit aa95ebd
Showing
12 changed files
with
779 additions
and
540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
packages/ds-svelte-community/src/lib/icons/Buildings2FillIcon.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<script lang="ts" context="module"> | ||
import newUniqueId from "$lib/components/local-unique-id"; | ||
import type { SVGAttributes } from "svelte/elements"; | ||
</script> | ||
|
||
<script lang="ts"> | ||
/** | ||
* Title of the icon, used for accessibility | ||
*/ | ||
export let title = ""; | ||
type $$Props = SVGAttributes<SVGElement> & { | ||
title?: string; | ||
}; | ||
const id = newUniqueId(); | ||
</script> | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="1em" | ||
height="1em" | ||
fill="none" | ||
focusable="false" | ||
role="img" | ||
viewBox="0 0 24 24" | ||
aria-labelledby={title ? id : undefined} | ||
{...$$restProps} | ||
> | ||
{#if title} | ||
<title {id}>{title}</title> | ||
{/if} | ||
<slot /> | ||
<path | ||
fill="currentColor" | ||
fill-rule="evenodd" | ||
d="M11 2.25a.75.75 0 0 0-.75.75v7.5c0 .138.112.25.25.25H13A2.25 2.25 0 0 1 15.25 13v8.5c0 .138.112.25.25.25H21a.75.75 0 0 0 .75-.75V3a.75.75 0 0 0-.75-.75H11Zm7 2.5a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Zm.75 4.75a.75.75 0 0 0-1.5 0v1a.75.75 0 0 0 1.5 0v-1ZM18 12.75a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Zm-15-.5a.75.75 0 0 0-.75.75v8c0 .414.336.75.75.75h10a.75.75 0 0 0 .75-.75v-8a.75.75 0 0 0-.75-.75H3Zm2.5 3a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Zm2.25.75a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> |
40 changes: 40 additions & 0 deletions
40
packages/ds-svelte-community/src/lib/icons/Buildings2Icon.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<script lang="ts" context="module"> | ||
import newUniqueId from "$lib/components/local-unique-id"; | ||
import type { SVGAttributes } from "svelte/elements"; | ||
</script> | ||
|
||
<script lang="ts"> | ||
/** | ||
* Title of the icon, used for accessibility | ||
*/ | ||
export let title = ""; | ||
type $$Props = SVGAttributes<SVGElement> & { | ||
title?: string; | ||
}; | ||
const id = newUniqueId(); | ||
</script> | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="1em" | ||
height="1em" | ||
fill="none" | ||
focusable="false" | ||
role="img" | ||
viewBox="0 0 24 24" | ||
aria-labelledby={title ? id : undefined} | ||
{...$$restProps} | ||
> | ||
{#if title} | ||
<title {id}>{title}</title> | ||
{/if} | ||
<slot /> | ||
<path | ||
fill="currentColor" | ||
fill-rule="evenodd" | ||
d="M10.25 3a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 .75.75v18a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75v-8a.75.75 0 0 1 .75-.75h7.25V3Zm3.5 10a.75.75 0 0 0-.75-.75h-1.25v-8.5h8.5v16.5h-6.5V13Zm-1.5.75v6.5h-8.5v-6.5h8.5Zm6.5-8.25a.75.75 0 0 0-1.5 0v1a.75.75 0 0 0 1.5 0v-1ZM5.5 15.25a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Zm2.25.75a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm11-6.5a.75.75 0 0 0-1.5 0v1a.75.75 0 0 0 1.5 0v-1ZM18 12.75a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> |
40 changes: 40 additions & 0 deletions
40
packages/ds-svelte-community/src/lib/icons/Buildings3FillIcon.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<script lang="ts" context="module"> | ||
import newUniqueId from "$lib/components/local-unique-id"; | ||
import type { SVGAttributes } from "svelte/elements"; | ||
</script> | ||
|
||
<script lang="ts"> | ||
/** | ||
* Title of the icon, used for accessibility | ||
*/ | ||
export let title = ""; | ||
type $$Props = SVGAttributes<SVGElement> & { | ||
title?: string; | ||
}; | ||
const id = newUniqueId(); | ||
</script> | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="1em" | ||
height="1em" | ||
fill="none" | ||
focusable="false" | ||
role="img" | ||
viewBox="0 0 24 24" | ||
aria-labelledby={title ? id : undefined} | ||
{...$$restProps} | ||
> | ||
{#if title} | ||
<title {id}>{title}</title> | ||
{/if} | ||
<slot /> | ||
<path | ||
fill="currentColor" | ||
fill-rule="evenodd" | ||
d="M7 2.25a.75.75 0 0 0-.75.75v18c0 .414.336.75.75.75h10a.75.75 0 0 0 .75-.75V3a.75.75 0 0 0-.75-.75H7Zm3.75 4.25a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0v-2ZM13 5.75a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-2.25 6.75a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0v-2Zm2.25-.75a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-8.5-2.5a.25.25 0 0 1 .25.25v12a.25.25 0 0 1-.25.25H3a.75.75 0 0 1-.75-.75V10A.75.75 0 0 1 3 9.25h1.5Zm15 12.5a.25.25 0 0 1-.25-.25v-12a.25.25 0 0 1 .25-.25H21a.75.75 0 0 1 .75.75v11a.75.75 0 0 1-.75.75h-1.5Z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> |
40 changes: 40 additions & 0 deletions
40
packages/ds-svelte-community/src/lib/icons/Buildings3Icon.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<script lang="ts" context="module"> | ||
import newUniqueId from "$lib/components/local-unique-id"; | ||
import type { SVGAttributes } from "svelte/elements"; | ||
</script> | ||
|
||
<script lang="ts"> | ||
/** | ||
* Title of the icon, used for accessibility | ||
*/ | ||
export let title = ""; | ||
type $$Props = SVGAttributes<SVGElement> & { | ||
title?: string; | ||
}; | ||
const id = newUniqueId(); | ||
</script> | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="1em" | ||
height="1em" | ||
fill="none" | ||
focusable="false" | ||
role="img" | ||
viewBox="0 0 24 24" | ||
aria-labelledby={title ? id : undefined} | ||
{...$$restProps} | ||
> | ||
{#if title} | ||
<title {id}>{title}</title> | ||
{/if} | ||
<slot /> | ||
<path | ||
fill="currentColor" | ||
fill-rule="evenodd" | ||
d="M6.25 3A.75.75 0 0 1 7 2.25h10a.75.75 0 0 1 .75.75v6.25H21a.75.75 0 0 1 .75.75v11a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V10A.75.75 0 0 1 3 9.25h3.25V3Zm11.5 17.25v-9.5h2.5v9.5h-2.5Zm-1.5-16.5v16.5h-8.5V3.75h8.5Zm-10 7v9.5h-2.5v-9.5h2.5Zm3.75-5a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm3 0a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-2.25 6.75a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0v-2Zm2.25-.75a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
packages/ds-svelte-community/src/lib/icons/FigureChildFillIcon.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<script lang="ts" context="module"> | ||
import newUniqueId from "$lib/components/local-unique-id"; | ||
import type { SVGAttributes } from "svelte/elements"; | ||
</script> | ||
|
||
<script lang="ts"> | ||
/** | ||
* Title of the icon, used for accessibility | ||
*/ | ||
export let title = ""; | ||
type $$Props = SVGAttributes<SVGElement> & { | ||
title?: string; | ||
}; | ||
const id = newUniqueId(); | ||
</script> | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="1em" | ||
height="1em" | ||
fill="none" | ||
focusable="false" | ||
role="img" | ||
viewBox="0 0 24 24" | ||
aria-labelledby={title ? id : undefined} | ||
{...$$restProps} | ||
> | ||
{#if title} | ||
<title {id}>{title}</title> | ||
{/if} | ||
<slot /> | ||
<path | ||
fill="currentColor" | ||
fill-rule="evenodd" | ||
d="M12 6.25a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Zm-2.5 7a.75.75 0 0 0-.75.75v4c0 .414.336.75.75.75h.75V21a.75.75 0 0 0 1.5 0v-2.25h.5V21a.75.75 0 0 0 1.5 0v-2.25h.75a.75.75 0 0 0 .75-.75v-4a.75.75 0 0 0-.75-.75h-5Z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> |
40 changes: 40 additions & 0 deletions
40
packages/ds-svelte-community/src/lib/icons/FigureChildIcon.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<script lang="ts" context="module"> | ||
import newUniqueId from "$lib/components/local-unique-id"; | ||
import type { SVGAttributes } from "svelte/elements"; | ||
</script> | ||
|
||
<script lang="ts"> | ||
/** | ||
* Title of the icon, used for accessibility | ||
*/ | ||
export let title = ""; | ||
type $$Props = SVGAttributes<SVGElement> & { | ||
title?: string; | ||
}; | ||
const id = newUniqueId(); | ||
</script> | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="1em" | ||
height="1em" | ||
fill="none" | ||
focusable="false" | ||
role="img" | ||
viewBox="0 0 24 24" | ||
aria-labelledby={title ? id : undefined} | ||
{...$$restProps} | ||
> | ||
{#if title} | ||
<title {id}>{title}</title> | ||
{/if} | ||
<slot /> | ||
<path | ||
fill="currentColor" | ||
fill-rule="evenodd" | ||
d="M10.25 9.5a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0ZM12 6.25a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Zm-2.5 7a.75.75 0 0 0-.75.75v4c0 .414.336.75.75.75h.75V21a.75.75 0 0 0 1.5 0v-3a.75.75 0 0 0-.75-.75h-.75v-2.5h3.5v2.5H13a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 1.5 0v-2.25h.75a.75.75 0 0 0 .75-.75v-4a.75.75 0 0 0-.75-.75h-5Z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.