UNPKG

react-ts-tradingview-widgets-fixed

Version:

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

17 lines (16 loc) 520 B
import React from "react"; import { ColorTheme, CopyrightStyles, Locales } from "../index"; export declare 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 CompanyProfile: React.FC<CompanyProfileProps>; export default CompanyProfile;