MCPcopy Create free account
hub / github.com/bernaferrari/FigmaToCode / ExpandIcon

Function ExpandIcon

packages/plugin-ui/src/components/ExpandIcon.tsx:3–13  ·  view source on GitHub ↗
(props: { size: number })

Source from the content-addressed store, hash-verified

1import React from "react";
2
3const ExpandIcon = (props: { size: number }) => (
4 <svg
5 xmlns="http://www.w3.org/2000/svg"
6 width={props.size}
7 height={props.size}
8 fill="currentColor"
9 viewBox="0 0 256 256"
10 >
11 <path d="M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128ZM101.66,53.66,120,35.31V96a8,8,0,0,0,16,0V35.31l18.34,18.35a8,8,0,0,0,11.32-11.32l-32-32a8,8,0,0,0-11.32,0l-32,32a8,8,0,0,0,11.32,11.32Zm52.68,148.68L136,220.69V160a8,8,0,0,0-16,0v60.69l-18.34-18.35a8,8,0,0,0-11.32,11.32l32,32a8,8,0,0,0,11.32,0l32-32a8,8,0,0,0-11.32-11.32Z"></path>
12 </svg>
13);
14export default ExpandIcon;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected