mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-12 02:35:42 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Tooltip, TooltipProps } from 'primereact/tooltip';
|
||||
import clsx from 'clsx';
|
||||
|
||||
export const FixedTooltip = ({ children, className, ...props }: TooltipProps) => {
|
||||
return (
|
||||
<Tooltip
|
||||
className={clsx('border border-green-300 rounded border-opacity-10 bg-stone-900 bg-opacity-70', className)}
|
||||
{...props}
|
||||
>
|
||||
{children}
|
||||
</Tooltip>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user