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 | import { ReactElement, SVGProps } from "react";
export default function Queue(props: SVGProps<SVGSVGElement>): ReactElement {
return (
<svg
role="img"
height="16"
width="16"
aria-hidden="true"
viewBox="0 0 16 16"
{...props}
>
<path d="M15 15H1v-1.5h14V15zm0-4.5H1V9h14v1.5zm-14-7A2.5 2.5 0 013.5 1h9a2.5 2.5 0 010 5h-9A2.5 2.5 0 011 3.5zm2.5-1a1 1 0 000 2h9a1 1 0 100-2h-9z"></path>
</svg>
);
}
|