mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
37 lines
778 B
TypeScript
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>
|
|
);
|
|
}
|