UNPKG

sebikostudio-icons

Version:
13 lines (8 loc) 945 B
import React, { forwardRef } from 'react'; export const ShadowOffsetYIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "shadow, offset y, y, shadow offset y, circles"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M16.1865 10C15.3429 12.6113 12.892 14.5 10 14.5C7.10796 14.5 4.65706 12.6113 3.8135 10C3.60996 10.6301 3.5 11.3022 3.5 12C3.5 15.5899 6.41015 18.5 10 18.5C13.5899 18.5 16.5 15.5899 16.5 12C16.5 11.3022 16.39 10.6301 16.1865 10Z" fill="currentColor" stroke="currentColor" strokeLinejoin="round"/> <path d="M10 14.5C13.5899 14.5 16.5 11.5899 16.5 8C16.5 4.41015 13.5899 1.5 10 1.5C6.41015 1.5 3.5 4.41015 3.5 8C3.5 11.5899 6.41015 14.5 10 14.5Z" stroke="currentColor" strokeLinejoin="round"/> </svg> )); export default ShadowOffsetYIcon;