@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
11 lines (10 loc) • 377 B
TypeScript
import React from 'react';
export interface IconProps extends Omit<React.SVGProps<SVGSVGElement>, 'ref' | 'tabIndex'> {
/**
* @see React.SVGAttributes.tabIndex
*/
tabIndex?: string | number | undefined;
title?: string | undefined;
}
declare const Icon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
export default Icon;