23 lines
514 B
TypeScript
23 lines
514 B
TypeScript
import React from 'react';
|
|
import InlineSVG from 'react-inlinesvg';
|
|
|
|
interface ISvgIcon {
|
|
className?: string,
|
|
alt?: string,
|
|
src: string,
|
|
size?: number,
|
|
}
|
|
|
|
/** Renders an inline SVG with an empty frame loading state */
|
|
const SvgIcon = ({ src, alt, size = 24, className }: ISvgIcon): JSX.Element => (
|
|
<InlineSVG
|
|
className={className}
|
|
src={src}
|
|
title={alt}
|
|
width={size}
|
|
height={size}
|
|
loader={<svg className={className} width={size} height={size} />}
|
|
/>
|
|
);
|
|
|
|
export default SvgIcon;
|