bear-hackathon-icons
Version:
SVG icons as React components for bear-related projects
20 lines (19 loc) • 916 B
TypeScript
export { default as Angry } from './components/Angry';
export { default as Bear } from './components/Bear';
export { default as Confused } from './components/Confused';
export { default as Cub } from './components/Cub';
export { default as Dizzy } from './components/Dizzy';
export { default as Hybernation } from './components/Hybernation';
export { default as Starving } from './components/Starving';
export { default as AngrySvg } from '../svg/angry.svg';
export { default as BearSvg } from '../svg/bear.svg';
export { default as ConfusedSvg } from '../svg/confused.svg';
export { default as CubSvg } from '../svg/cub.svg';
export { default as DizzySvg } from '../svg/dizzy.svg';
export { default as HybernationSvg } from '../svg/hybernation.svg';
export { default as StarvingSvg } from '../svg/starving.svg';
export interface IconProps {
size?: number | string;
color?: string;
className?: string;
}