@marketicons/bist-react
Version:
React components for BIST stock market logos
11 lines (8 loc) • 311 B
TypeScript
import React from 'react';
interface BistIconProps extends Omit<React.SVGProps<SVGSVGElement>, "name"> {
name: string;
size?: number | string;
title?: string;
}
declare function BistIcon({ name, size, title, ...props }: BistIconProps): JSX.Element | null;
export { BistIcon, type BistIconProps };