UNPKG

react-ts-tradingview-widgets-fixed

Version:

This is a React component library for TradingView Widgets. TypeScript is fully supported for every component!

16 lines (15 loc) 473 B
import React from "react"; import { ColorTheme, CopyrightStyles, Locales } from "../index"; export declare type SymbolInfoProps = { symbol?: string; width?: string | number; autosize?: boolean; locale?: Locales; colorTheme?: ColorTheme; isTransparent?: boolean; largeChartUrl?: string; children?: never; copyrightStyles?: CopyrightStyles; }; declare const SymbolInfo: React.FC<SymbolInfoProps>; export default SymbolInfo;