sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 812 B
JavaScript
import React, { forwardRef } from 'react';
export const SewingPinIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "sewing pin, pin, point, location"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M12.5 5C12.5 6.38071 11.3807 7.5 10 7.5C8.61929 7.5 7.5 6.38071 7.5 5C7.5 3.61929 8.61929 2.5 10 2.5C11.3807 2.5 12.5 3.61929 12.5 5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M9.75295 16.912L8.24976 7.25H11.458C11.6114 7.25 11.7286 7.38686 11.7051 7.53843L10.247 16.912C10.2031 17.1941 9.79684 17.1941 9.75295 16.912Z" fill="currentColor"/>
</svg>
));
export default SewingPinIcon;