mirror of
https://github.com/bakhirev/assayo.git
synced 2025-09-01 01:59:39 +00:00
19 lines
340 B
TypeScript
19 lines
340 B
TypeScript
import React from 'react';
|
|
|
|
import style from '../styles/index.module.scss';
|
|
|
|
interface IExtensionIconProps {
|
|
title: string;
|
|
}
|
|
|
|
function ExtensionIcon({
|
|
title,
|
|
}: IExtensionIconProps): React.ReactElement | null {
|
|
return (
|
|
<div className={style.extension_icon}>
|
|
{title || ''}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default ExtensionIcon;
|