Files
canvasManagement/src/components/icons/ExpandIcon.tsx
2026-01-05 10:22:12 -07:00

37 lines
778 B
TypeScript

import React from "react";
export default function ExpandIcon({
style,
}: {
style?: React.CSSProperties | undefined;
}) {
const size = "24px";
return (
<svg
style={style}
width={size}
height={size}
className="transition-all"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="SVGRepo_bgCarrier" strokeWidth="0"></g>
<g
id="SVGRepo_tracerCarrier"
strokeLinecap="round"
strokeLinejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<path
className="stroke-slate-300"
d="M9 6L15 12L9 18"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>
);
}