UNPKG

react-ts-tradingview-widgets

Version:

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

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