feat: add basic search dialog

This commit is contained in:
2024-01-23 13:07:24 +07:00
parent 67afeac198
commit cb71786ac1
19 changed files with 1579 additions and 29 deletions

View File

@@ -0,0 +1,17 @@
export function SearchFilledIcon(props: JSX.IntrinsicElements["svg"]) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<path
fill="currentColor"
d="M11.5 2a9.5 9.5 0 105.973 16.887l2.82 2.82a1 1 0 001.414-1.414l-2.82-2.82A9.5 9.5 0 0011.5 2z"
/>
</svg>
);
}