import { JSX } from "solid-js";

export default function CurrencyYen(
    props: JSX.IntrinsicElements["svg"] & {
        primary?: string;
        secondary?: string;
        tertiary?: string;
        size?: number | string;
    }
): JSX.Element {
    return (
        <svg {...props} data-icon="currency.yen" xmlns="http://www.w3.org/2000/svg" width={props.size ?? "16"} height={props.size ?? "16"} fill="none" viewBox="0 0 14 14"><path stroke={props.primary||'currentColor'} stroke-linecap="round" d="M7 7v4m0-4L4 3m3 4 3-4"/><path stroke={props.secondary||'currentColor'} stroke-linecap="round" d="M5 7h4M5 9h4"/></svg>
    );
}
    