change side type from string to standards used in Tooltip.tsx
parent
5d565ba7b7
commit
18c93b5d5f
|
@ -228,7 +228,7 @@ const Wrapper = ({
|
||||||
}: {
|
}: {
|
||||||
tooltip?: string;
|
tooltip?: string;
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
side?: string;
|
side?: "top" | "right" | "bottom" | "left";
|
||||||
}) => {
|
}) => {
|
||||||
if (!tooltip) {
|
if (!tooltip) {
|
||||||
return <>{children}</>;
|
return <>{children}</>;
|
||||||
|
|
Loading…
Reference in New Issue