Files
probo/packages/ui/src/Atoms/Icons/IconChevronGrabberVertical.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

10 lines
1.1 KiB
TypeScript

import type { IconProps } from "./type.ts";
export function IconChevronGrabberVertical({ 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="M11.8232 6.59108L8.70711 9.70717C8.31659 10.0977 7.68342 10.0977 7.2929 9.70717C6.90237 9.31665 6.90237 8.68348 7.29289 8.29296L10.409 5.17684C11.2877 4.29819 12.7123 4.29816 13.591 5.17681L16.7071 8.29296C17.0976 8.68348 17.0976 9.31665 16.7071 9.70717C16.3166 10.0977 15.6834 10.0977 15.2929 9.70717L12.1768 6.59108C12.0791 6.49344 11.9209 6.49345 11.8232 6.59108ZM7.29289 14.293C7.68342 13.9025 8.31658 13.9025 8.70711 14.293L11.8231 17.409C11.9208 17.5066 12.0791 17.5067 12.1768 17.4091L15.2929 14.293C15.6834 13.9025 16.3166 13.9025 16.7071 14.293C17.0976 14.6835 17.0976 15.3167 16.7071 15.7072L13.591 18.8233C12.7123 19.7018 11.2878 19.7019 10.4091 18.8234L7.29289 15.7072C6.90237 15.3167 6.90237 14.6835 7.29289 14.293Z" fill="currentColor" />
</svg>
);
}