@nant-design/nant-icons
Version:
10 lines (7 loc) • 533 B
JSX
import React from 'react';
export const GolfOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path d="M256 400V32l176 80-176 80" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<path d="M256 336c-87 0-175.3 43.2-191.64 124.74C62.39 470.57 68.57 480 80 480h352c11.44 0 17.62-9.43 15.65-19.26C431.3 379.2 343 336 256 336Z" fill="none" stroke={fill} strokeMiterlimit="10" strokeWidth="32"/>
</svg>;
};