Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
153 changes: 146 additions & 7 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@storybook/addon-docs": "^9.1.10",
"@storybook/addon-links": "^9.1.10",
"@storybook/addon-onboarding": "^9.1.10",
"@storybook/react-vite": "^9.1.10",
Expand All @@ -75,8 +76,7 @@
"semantic-release": "^24.2.5",
"sonner": "^2.0.1",
"storybook": "^9.1.10",
"tailwindcss-animate": "^1.0.7",
"@storybook/addon-docs": "^9.1.10"
"tailwindcss-animate": "^1.0.7"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
Expand All @@ -95,7 +95,7 @@
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toggle": "^1.0.3",
Expand Down
21 changes: 12 additions & 9 deletions src/custom/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,17 @@ export const StatusIconRetrying = (props: { className?: string }) => {
</svg>



}









export const ExactMatchIcon = (props: { className?: string }) => {
return (
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg"
className={cn("size-5", props.className)}>
<rect x="0.5" y="0.5" width="19" height="19" rx="1.5" stroke="currentColor"/>
<path
d="M17 13H14.4074C14.1325 12.9996 13.869 12.8941 13.6746 12.7067C13.4802 12.5192 13.3708 12.2651 13.3704 12V9C13.3704 8.73478 13.4796 8.48043 13.6741 8.29289C13.8686 8.10536 14.1324 8 14.4074 8H17V9H14.4074V12H17V13ZM11.2963 8H9.22222V6H8.18518V13H11.2963C11.5712 12.9996 11.8347 12.8941 12.0291 12.7067C12.2235 12.5192 12.3329 12.2651 12.3333 12V9C12.3333 8.73478 12.2241 8.48043 12.0296 8.29289C11.8351 8.10536 11.5713 8 11.2963 8ZM9.22222 12V9H11.2963V12H9.22222ZM6.11111 8H3.51852V9H6.11111V10H4.03704C3.762 10 3.49822 10.1054 3.30374 10.2929C3.10926 10.4804 3 10.7348 3 11V12C3 12.2652 3.10926 12.5196 3.30374 12.7071C3.49822 12.8946 3.762 13 4.03704 13H7.14815V9C7.14815 8.73478 7.03889 8.48043 6.84441 8.29289C6.64992 8.10536 6.38615 8 6.11111 8ZM6.11111 12H4.03704V11H6.11111V12Z"
fill="currentColor"/>
</svg>
)
}
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export * from "./shadcn/ui/dropdown-menu";
export * from "./shadcn/ui/form";
export * from "./shadcn/ui/hover-card";
export * from "./shadcn/ui/input";
export * from "./shadcn/ui/input-group";
export * from "./shadcn/ui/input-otp";
export * from "./shadcn/ui/label";
export * from "./shadcn/ui/navigation-menu";
Expand Down
Loading