1
0
Fork 0
freesewing/packages/freesewing.shared/components/icons/help.js
2022-05-11 16:29:46 +02:00

9 lines
476 B
JavaScript

/* Sourced from heroicons.com - Thanks guys! */
const Help = ({ className="w-6 h-6" }) => (
<svg xmlns="http://www.w3.org/2000/svg" className={className} fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
)
export default Help