feat(column): add hashtag column

This commit is contained in:
2023-12-30 17:33:04 +07:00
parent ddbbcf41b5
commit b1d2496f8e
22 changed files with 533 additions and 52 deletions

View File

@@ -1,22 +1,24 @@
import { SVGProps } from 'react';
import { SVGProps } from "react";
export function HashtagIcon(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
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
d="M8.75 3.75l-2 16.5m10.5-16.5l-2 16.5M3.75 7.75h16.5m0 8.5H3.75"
></path>
</svg>
);
export function HashtagIcon(
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
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M7 20l3-16m4 16l3-16m2.5 11h-16m17-6h-16"
/>
</svg>
);
}