Skip to content

Commit

Permalink
rename IconLibrary -> Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelmarconi committed Aug 2, 2024
1 parent 3305ffc commit 08db47a
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import IconClose from "./IconClose.svelte";
export const meta = {
title: "Components/IconLibrary",
//title: "Components/Icons",
component: IconClose,
//tags: ["autodocs"],
argTypes: {
Expand Down Expand Up @@ -31,7 +31,7 @@
}
},
githubLink: {
url: "/IconLibrary/IconClose.svelte"
url: "/Icons/IconClose.svelte"
}
}
};
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as CloseStory from "./IconClose.stories.svelte";
import * as SearchStory from "./IconSearch.stories.svelte";
import { Meta, Title, Canvas, Story, Controls, IconGallery, IconItem } from "@storybook/blocks";

<Meta title="Components/IconLibrary" of={PlusStories} />
<Meta title="Components/Icons" of={PlusStories} />

# Icons

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import IconMinus from "./IconMinus.svelte";
export const meta = {
title: "Components/IconLibrary",
//title: "Components/Icons",
component: IconMinus,
//tags: ["autodocs"],
argTypes: {
Expand Down Expand Up @@ -31,7 +31,7 @@
}
},
githubLink: {
url: "/IconLibrary/IconMinus.svelte"
url: "/Icons/IconMinus.svelte"
}
}
};
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
import IconPlus from "./IconPlus.svelte";
export const meta = {
title: "Components/IconLibrary",
title: "Components/Icons",
// includeStories: ["Default", "WithColor","ChangingSize"],
// excludeStories: ["PlusPreview"],
component: IconPlus,
//tags: ["autodocs"],
argTypes: {
Expand Down Expand Up @@ -31,10 +33,11 @@
}
},
githubLink: {
url: "/IconLibrary/IconPlus.svelte"
url: "/Icons/IconPlus.svelte"
}
}
};
</script>

<script>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import IconSearch from "./IconSearch.svelte";
export const meta = {
title: "Components/IconLibrary",
//title: "Components/Icons",
component: IconSearch,
//tags: ["autodocs"],
argTypes: {
Expand Down Expand Up @@ -31,7 +31,7 @@
}
},
githubLink: {
url: "/IconLibrary/IconSearch.svelte"
url: "/Icons/IconSearch.svelte"
}
}
};
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions src/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ export { default as BasicDropdown } from "./BasicDropdown/BasicDropdown.svelte";
export { default as Block } from "./Block/Block.svelte";
export { default as DatawrapperIframe } from "./DatawrapperIframe/DatawrapperIframe.svelte";
export { default as HeadingAlt } from "./HeadingAlt/HeadingAlt.svelte";
export { default as IconPlus } from "./IconLibrary/IconPlus.svelte";
export { default as IconMinus } from "./IconLibrary/IconMinus.svelte";
export { default as IconClose } from "./IconLibrary/IconClose.svelte";
export { default as IconSearch } from "./IconLibrary/IconSearch.svelte";
export { default as IconPlus } from "./Icons/IconPlus.svelte";
export { default as IconMinus } from "./Icons/IconMinus.svelte";
export { default as IconClose } from "./Icons/IconClose.svelte";
export { default as IconSearch } from "./Icons/IconSearch.svelte";
export { default as LogoTPCBadge } from "./LogoTPCBadge/LogoTPCBadge.svelte";
export { default as LogoUrbanBadge } from "./LogoUrbanBadge/LogoUrbanBadge.svelte";
export { default as LogoUrbanAnimated } from "./LogoUrbanAnimated/LogoUrbanAnimated.svelte";
Expand Down

0 comments on commit 08db47a

Please sign in to comment.