sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 738 B
JavaScript
import React, { forwardRef } from 'react';
export const SewingPinFilledIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "sewing pin filled, pin, point, location"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<circle cx="10" cy="5" r="2.5" fill="currentColor" 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 SewingPinFilledIcon;