UNPKG

@thenewboston/ui

Version:

UI Library for the thenewboston community

10 lines (9 loc) 276 B
import React, { FC } from 'react'; interface TnbIconProps { className?: string; color?: string; onClick?(e: React.MouseEvent<SVGSVGElement, MouseEvent>): void; size?: number | string; } declare const TnbIcon: FC<TnbIconProps>; export default TnbIcon;