feat: invoice generator

This commit is contained in:
Vasily Zubarev
2025-05-07 14:53:13 +02:00
parent 287abbb219
commit 8b5a2e8056
59 changed files with 2606 additions and 124 deletions

View File

@@ -3,15 +3,15 @@ import { useMemo } from "react"
import { FormSelect } from "./simple"
export const FormSelectCurrency = ({
title,
currencies,
title,
emptyValue,
placeholder,
hideIfEmpty = false,
...props
}: {
title: string
currencies: { code: string; name: string }[]
title?: string
emptyValue?: string
placeholder?: string
hideIfEmpty?: boolean