feat: add basic search dialog
This commit is contained in:
@@ -110,3 +110,4 @@ export * from "./src/bellFilled";
|
||||
export * from "./src/foryou";
|
||||
export * from "./src/editInterest";
|
||||
export * from "./src/newColumn";
|
||||
export * from "./src/searchFilled";
|
||||
|
||||
17
packages/icons/src/searchFilled.tsx
Normal file
17
packages/icons/src/searchFilled.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user