Update dependencies and import paths
This commit is contained in:
20
src/icons/ClipboardIcon.tsx
Normal file
20
src/icons/ClipboardIcon.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
type Props = {
|
||||
className: string
|
||||
}
|
||||
|
||||
export const ClipboardIcon: React.FC<Props> = ({ className }) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="2"
|
||||
viewBox="0 0 24 24"
|
||||
className={className}>
|
||||
<rect width="8" height="4" x="8" y="2" rx="1" ry="1"></rect>
|
||||
<path d="M16 4h2a2 2 0 012 2v14a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h2"></path>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user