move files
This commit is contained in:
10
frontend/src/components/ToolTipButton.tsx
Normal file
10
frontend/src/components/ToolTipButton.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React, {FC, ReactElement} from 'react';
|
||||
import {Button, Tooltip} from '@fluentui/react-components';
|
||||
|
||||
export const ToolTipButton: FC<{ text?: string, desc: string, icon?: ReactElement }> = ({text, desc, icon}) => {
|
||||
return (
|
||||
<Tooltip content={desc} showDelay={0} hideDelay={0} relationship="label">
|
||||
<Button icon={icon}>{text}</Button>
|
||||
</Tooltip>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user