Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import { ReactElement, SVGProps } from "react";
export default function FullScreen(
props: SVGProps<SVGSVGElement>
): ReactElement {
return (
<svg
role="img"
height="16"
width="16"
aria-hidden="true"
viewBox="0 0 16 16"
fill="currentColor"
{...props}
>
<path d="M6.53 9.47a.75.75 0 010 1.06l-2.72 2.72h1.018a.75.75 0 010 1.5H1.25v-3.579a.75.75 0 011.5 0v1.018l2.72-2.72a.75.75 0 011.06 0zm2.94-2.94a.75.75 0 010-1.06l2.72-2.72h-1.018a.75.75 0 110-1.5h3.578v3.579a.75.75 0 01-1.5 0V3.81l-2.72 2.72a.75.75 0 01-1.06 0z"></path>
</svg>
);
}
|