Files
probo/packages/ui/src/Atoms/Icons/IconDotGrid1x3Horizontal.tsx
Émile Ré 988909eb78 Fix packages/ui lint issues
Signed-off-by: Émile Ré <emile@getprobo.com>
2026-01-22 16:39:20 +04:00

12 lines
870 B
TypeScript

import type { IconProps } from "./type.ts";
export function IconDotGrid1x3Horizontal({ size = 24, className }: IconProps) {
return (
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
<path fillRule="evenodd" clipRule="evenodd" d="M10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12Z" fill="currentColor" />
<path fillRule="evenodd" clipRule="evenodd" d="M18 12C18 10.8954 18.8954 10 20 10C21.1046 10 22 10.8954 22 12C22 13.1046 21.1046 14 20 14C18.8954 14 18 13.1046 18 12Z" fill="currentColor" />
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 10.8954 2.89545 10 4 10C5.10455 10 6 10.8954 6 12C6 13.1046 5.10455 14 4 14C2.89545 14 2 13.1046 2 12Z" fill="currentColor" />
</svg>
);
}