16 lines
499 B
TypeScript
16 lines
499 B
TypeScript
import React from 'react';
|
|
import type { IconProps } from '../types';
|
|
|
|
export const Clipboard = (props: IconProps) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="currentColor"
|
|
viewBox="0 0 24 24"
|
|
{...props}
|
|
>
|
|
<path d="M6 22v-16h16v7.543c0 4.107-6 2.457-6 2.457s1.518 6-2.638 6h-7.362zm18-7.614v-10.386h-20v20h10.189c3.163 0 9.811-7.223 9.811-9.614zm-10 1.614h-5v-1h5v1zm5-4h-10v1h10v-1zm0-3h-10v1h10v-1zm2-7h-19v19h-2v-21h21v2z" />
|
|
</svg>
|
|
);
|
|
|
|
export default Clipboard;
|