UNPKG

sebikostudio-icons

Version:
13 lines (8 loc) 945 B
import React, { forwardRef } from 'react'; export const ShadowOffsetXIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "shadow, offset x, x, shadow offset x, circles"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M10 16.1865C12.6113 15.3429 14.5 12.892 14.5 10C14.5 7.10796 12.6113 4.65706 10 3.8135C10.6301 3.60996 11.3022 3.5 12 3.5C15.5899 3.5 18.5 6.41015 18.5 10C18.5 13.5899 15.5899 16.5 12 16.5C11.3022 16.5 10.6301 16.39 10 16.1865Z" fill="currentColor" stroke="currentColor" strokeLinejoin="round"/> <path d="M14.5 10C14.5 13.5899 11.5899 16.5 8 16.5C4.41015 16.5 1.5 13.5899 1.5 10C1.5 6.41015 4.41015 3.5 8 3.5C11.5899 3.5 14.5 6.41015 14.5 10Z" stroke="currentColor" strokeLinejoin="round"/> </svg> )); export default ShadowOffsetXIcon;