21 lines
511 B
TypeScript
21 lines
511 B
TypeScript
type Props = {
|
|
className: string
|
|
}
|
|
|
|
export const SquarePen: 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">
|
|
<path d="M12 3H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"></path>
|
|
<path d="M18.375 2.625a2.121 2.121 0 113 3L12 15l-4 1 1-4z"></path>
|
|
</svg>
|
|
)
|
|
}
|