@barguide/icons
Version:
BarGuide.io | React SVG components shared across applications
11 lines (10 loc) • 388 B
TypeScript
import * as React from 'react';
import { Icon } from './index';
/**
* @name IconWrapper
* @description We've taken the common elements of our "Icons" and abstracted
* them into a single component, this while it may not seem like a lot, when
* repeated over 36 times, it adds up.
*/
declare const IconWrapper: React.FC<Icon>;
export { IconWrapper as default, IconWrapper };