7 lines
343 B
JavaScript
7 lines
343 B
JavaScript
const BoxIcon = ({ className="m-6 h-6" }) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" className={className} fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4" />
|
|
</svg>
|
|
)
|
|
|
|
export default BoxIcon
|