dappconnect-sdks/packages/icons/src/inactive-left-icon.tsx

21 lines
437 B
TypeScript

import { createIcon } from '../lib/create-icon'
const SvgInactiveLeftIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 14 20"
focusable={false}
aria-hidden={true}
>
<circle cx={4} cy={10} r={4} fill="#A1ABBD" />
</svg>
)
})
export default SvgInactiveLeftIcon