import type { Component /* , JSX */ } from 'solid-js' import { splitProps } from 'solid-js' export const MirrorBulletIcon: Component<{ /* size?: number | string scale?: number | string class?: string style?: JSX.CSSProperties */ [x: string]: any }> = (passedProps) => { const [_props, otherProps] = splitProps(passedProps, ['name']) const svgEl = ( ) as SVGElement return svgEl }