* add docs for medusa ui 2.0.0 * fix: copy as child example * fix: dropdown menu example * add accordion examples * fix lint issues * fix apos in progress tabs demo * resolve comments * add icon * bump z-index on modals to prevent clashing with navbar * add sidebar item and card * undo modal z index changes * add links to updated and new components * update version * rm inline code formatting on links --------- Co-authored-by: Shahed Nasser <shahednasser@gmail.com>
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
import { CurrencyInput } from "@medusajs/ui"
|
|
|
|
export default function CurrencyInputSmall() {
|
|
return (
|
|
<div className="max-w-[250px]">
|
|
<CurrencyInput size="small" symbol="$" code="usd" />
|
|
</div>
|
|
)
|
|
}
|