datajunction-ui
Version:
DataJunction UI
22 lines (20 loc) • 557 B
JSX
const JupyterExportIcon = ({ size = 14 }) => (
<svg
className="feather feather-jupyter-export"
fill="none"
height={size}
width={size}
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
xmlns="http://www.w3.org/2000/svg"
>
<rect x="3" y="2" width="14" height="20" rx="2" ry="2" />
<line x1="7" y1="6" x2="13" y2="6" />
<line x1="7" y1="10" x2="13" y2="10" />
<line x1="7" y1="14" x2="13" y2="14" />
</svg>
);
export default JupyterExportIcon;