add more actions to note
This commit is contained in:
28
src/shared/icons/horizontalDots.tsx
Normal file
28
src/shared/icons/horizontalDots.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import { SVGProps } from 'react';
|
||||
|
||||
export function HorizontalDotsIcon(
|
||||
props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>
|
||||
) {
|
||||
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="M12 13a1 1 0 100-2 1 1 0 000 2zM20.25 13a1 1 0 100-2 1 1 0 000 2zM3.75 13a1 1 0 100-2 1 1 0 000 2z"
|
||||
/>
|
||||
<path
|
||||
stroke="currentColor"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="1.5"
|
||||
d="M12 13a1 1 0 100-2 1 1 0 000 2zM20.25 13a1 1 0 100-2 1 1 0 000 2zM3.75 13a1 1 0 100-2 1 1 0 000 2z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
@@ -47,4 +47,5 @@ export * from './reaction';
|
||||
export * from './thread';
|
||||
export * from './strangers';
|
||||
export * from './download';
|
||||
export * from './horizontalDots';
|
||||
// @endindex
|
||||
|
||||
Reference in New Issue
Block a user