Socket
Socket
Sign inDemoInstall

@radix-ui/react-hover-card

Package Overview
Dependencies
10
Maintainers
6
Versions
214
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@radix-ui/react-hover-card


Version published
Maintainers
6
Created

Package description

What is @radix-ui/react-hover-card?

@radix-ui/react-hover-card is a React component library that provides a customizable hover card component. It allows developers to create interactive hover cards that display additional information when a user hovers over a target element. This can be useful for tooltips, previews, and other UI elements that require additional context on hover.

What are @radix-ui/react-hover-card's main functionalities?

Basic Hover Card

This example demonstrates a basic hover card setup where additional information is displayed when the user hovers over the trigger element.

```jsx
import { HoverCard, HoverCardTrigger, HoverCardContent } from '@radix-ui/react-hover-card';

function App() {
  return (
    <HoverCard>
      <HoverCardTrigger>Hover over me</HoverCardTrigger>
      <HoverCardContent>
        <div>Additional information displayed on hover</div>
      </HoverCardContent>
    </HoverCard>
  );
}

export default App;
```

Custom Styling

This example shows how to apply custom styles to the hover card components using CSS classes.

```jsx
import { HoverCard, HoverCardTrigger, HoverCardContent } from '@radix-ui/react-hover-card';
import './App.css'; // Assume custom styles are defined here

function App() {
  return (
    <HoverCard>
      <HoverCardTrigger className="custom-trigger">Hover over me</HoverCardTrigger>
      <HoverCardContent className="custom-content">
        <div>Styled additional information</div>
      </HoverCardContent>
    </HoverCard>
  );
}

export default App;
```

Delay Configuration

This example demonstrates how to configure the delay before the hover card opens and closes, providing a smoother user experience.

```jsx
import { HoverCard, HoverCardTrigger, HoverCardContent } from '@radix-ui/react-hover-card';

function App() {
  return (
    <HoverCard openDelay={300} closeDelay={200}>
      <HoverCardTrigger>Hover over me</HoverCardTrigger>
      <HoverCardContent>
        <div>Information with delay</div>
      </HoverCardContent>
    </HoverCard>
  );
}

export default App;
```

Other packages similar to @radix-ui/react-hover-card

Readme

Source

react-hover-card

Installation

$ yarn add @radix-ui/react-hover-card
# or
$ npm install @radix-ui/react-hover-card

Usage

View docs here.

FAQs

Last updated on 26 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc