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 | import { ReactElement } from "react";
export default function Library({
fill,
...props
}: {
fill: string;
}): ReactElement {
return (
<svg viewBox="0 0 512 512" width="24" height="24" {...props}>
<path
d="M291.301 81.778l166.349 373.587-19.301 8.635-166.349-373.587zM64 463.746v-384h21.334v384h-21.334zM192 463.746v-384h21.334v384h-21.334z"
fill={fill}
></path>
</svg>
);
}
|