UNPKG

sp-app-react

Version:

React based Controls and Utilities for building applications in SharePoint

10 lines (9 loc) 311 B
/// <reference types="react" /> import { ISpinButtonProps } from "@fluentui/react"; interface SPCurrencyProps extends ISpinButtonProps { name: string; readOnly?: boolean; required?: boolean | undefined; } export declare const SPCurrency: (props: SPCurrencyProps) => JSX.Element; export {};