feat(columns): add default column

This commit is contained in:
2024-01-02 12:28:48 +07:00
parent 7856d6d49d
commit 698f5a5d6d
12 changed files with 271 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
export function HelpIcon(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
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M9.281 9.719A2.719 2.719 0 1113.478 12c-.724.47-1.478 1.137-1.478 2m0 3h.001M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
);
}