feat(tooltip): add default role for aria

This commit is contained in:
p-sw 2024-07-19 00:35:30 +09:00
parent bc2020f560
commit bef29ebf19

View File

@ -1,5 +1,5 @@
import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib";
import React, { useState } from "react";
import React, { useState, useId } from "react";
interface TooltipContextBody {
position: "top" | "bottom" | "left" | "right";
@ -140,6 +140,7 @@ const TooltipContent = React.forwardRef<HTMLDivElement, TooltipContentProps>(
...variantProps,
position: contextState.position,
})}
role="tooltip"
{...rest}
/>
);