2021-12-27 14:30:10 +01:00
|
|
|
/* Sourced from heroicons.com - Thanks guys! */
|
2022-05-11 16:29:46 +02:00
|
|
|
const Docs = ({ className="h-6 w-6" }) => (
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" className={className} fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
2021-12-27 14:30:10 +01:00
|
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
|
|
|
|
export default Docs
|
|
|
|
|