jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
15 lines (14 loc) • 410 B
TypeScript
/// <reference types="styled-components" />
import React from 'react';
export interface Props {
color?: string;
width?: string;
height?: string;
title: string;
titleId?: string;
theme?: any;
}
export declare const ChartIcon: React.ForwardRefExoticComponent<Pick<Props, "title" | "titleId" | "color" | "width" | "height"> & {
theme?: any;
}>;
export default ChartIcon;