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