UNPKG

sebikostudio-icons

Version:
13 lines (8 loc) 985 B
import React, { forwardRef } from 'react'; export const ShadowOuterIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "shadow outer, 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="M16.5 8C16.5 11.5899 13.5899 14.5 10 14.5C6.41015 14.5 3.5 11.5899 3.5 8C3.5 4.41015 6.41015 1.5 10 1.5C13.5899 1.5 16.5 4.41015 16.5 8Z" stroke="currentColor" strokeLinejoin="round"/> <path d="M10 14.5001C13.5899 14.5001 16.5 11.59 16.5 8.00011C16.5 7.25718 16.3754 6.54336 16.1458 5.87842C17.3035 7.26603 18 9.05173 18 11.0001C18 15.4184 14.4183 19.0001 10 19.0001C5.58172 19.0001 2 15.4184 2 11.0001C2 9.05173 2.69652 7.26602 3.85415 5.87842C3.62464 6.54336 3.5 7.25718 3.5 8.00011C3.5 11.59 6.41015 14.5001 10 14.5001Z" fill="currentColor"/> </svg> )); export default ShadowOuterIcon;