import type { Component } from 'solid-js'; import { IconProps } from '../types'; import { genSVGCubicBezier } from '../util'; import { MainCircle, SecondaryCircle } from './IconCircle'; export const Success: Component = (props: IconProps) => { const fill = props.primary || '#34C759'; return ( ); };