Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
claireolmstead committed Oct 10, 2024
1 parent df936b0 commit b0a8cfa
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 14 deletions.
9 changes: 0 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
"@storybook/addons": "^7.6.17",
"bits-ui": "^0.21.16",
"clsx": "^2.1.1",
"lucide-svelte": "^0.451.0",
"svelte": "^4.2.19",
"tailwind-merge": "^2.5.2"
}
Expand Down
3 changes: 0 additions & 3 deletions src/icons/Chevron.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
<script lang="ts">
</script>

<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg" class={$$restProps.class}>
<path
d="M10.4711 0.229856L6.93879 4.08615L5.99461 5.1117L5.05522 4.08615L1.5325 0.229856C1.15866 -0.0945539 0.617074 -0.0788567 0.276785 0.297878C-0.0922616 0.700774 -0.0922616 1.34959 0.276785 1.75249L5.06001 6.97445L5.9994 8L6.94358 6.97445L11.7268 1.75249C11.9089 1.55366 12 1.2868 12 1.02518C12 0.763563 11.9089 0.49671 11.7268 0.297878C11.3817 -0.0788567 10.8401 -0.0945539 10.4711 0.229856Z"
Expand Down
18 changes: 18 additions & 0 deletions src/icons/Chevron.svelte.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
exports?: undefined;
bindings?: undefined;
};
export type ChevronProps = typeof __propDef.props;
export type ChevronEvents = typeof __propDef.events;
export type ChevronSlots = typeof __propDef.slots;
export default class Chevron extends SvelteComponent<ChevronProps, ChevronEvents, ChevronSlots> {
}
export {};
2 changes: 1 addition & 1 deletion src/lib/shadcnComponents/ui/select/select-item.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import Check from '../../../../assets/Check.svelte';
import Check from '../../../../icons/Check.svelte';
import { Select as SelectPrimitive } from 'bits-ui';
import { cn } from '../../../../utils';
Expand Down
1 change: 1 addition & 0 deletions svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default {
$atoms: resolve('./src/lib/atoms'),
$typography: resolve('./src/lib/typography'),
$colors: resolve('./src/lib/tailwindColors'),
$icons: resolve('./src/icons'),
},
},
};

0 comments on commit b0a8cfa

Please sign in to comment.