react-tradingview-embed
Version:
React components for TradingView Embeds
16 lines • 480 B
TypeScript
/// <reference types="react" />
export declare type SymbolInfoWidgetProps = {
symbol?: string;
width?: string | number;
locale?: string;
colorTheme?: string;
isTransparent?: boolean;
};
declare type SymbolInfoProps = {
widgetProps?: SymbolInfoWidgetProps;
widgetPropsAny?: any;
children?: never;
};
declare const SymbolInfo: (props: SymbolInfoProps) => JSX.Element;
export default SymbolInfo;
//# sourceMappingURL=SymbolInfo.d.ts.map