13 lines
496 B
TypeScript
13 lines
496 B
TypeScript
export function CopyIcon(props: {fill: string, class?: string}) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
class={`inline-block w-6 ${props.class}`}
|
|
fill={props.fill}
|
|
viewBox="0 0 256 256"
|
|
>
|
|
<path d="M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z" />
|
|
</svg>
|
|
);
|
|
}
|