UNPKG

sebikostudio-icons

Version:
13 lines (8 loc) 910 B
import React, { forwardRef } from 'react'; export const ShadowIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "shadow, shadow, cast, circle"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M14.4365 5.43579C15.1088 6.45927 15.5 7.68401 15.5 9.0001C15.5 12.59 12.5898 15.5001 8.99998 15.5001C7.68389 15.5001 6.45915 15.109 5.43567 14.4366C6.42513 17.1013 8.99082 19.0001 12 19.0001C15.866 19.0001 19 15.8661 19 12.0001C19 8.99094 17.1012 6.42526 14.4365 5.43579Z" fill="currentColor"/> <path d="M15.5 9C15.5 12.5899 12.5899 15.5 9 15.5C5.41015 15.5 2.5 12.5899 2.5 9C2.5 5.41015 5.41015 2.5 9 2.5C12.5899 2.5 15.5 5.41015 15.5 9Z" stroke="currentColor" strokeLinejoin="round"/> </svg> )); export default ShadowIcon;