New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@fidesui/react

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fidesui/react

Fides wrapper around Chakra UI components

0.0.23
latest
npm
Version published
Weekly downloads
126
193.02%
Maintainers
2
Weekly downloads
 
Created
Source

@fidesui/react

Bundles all of the FidesUI components into one package for easier consumption.

Installation

yarn add @fidesui/react

Usage

Wrap your app in a <FidesProvider /> component:

import { ThemeProvider as FidesProvider } from "@fidesui/react";

export const App: React.FC = ({ children }) => {
  return <FidesProvider>{children}</FidesProvider>;
};

To use a component, import it from the package and use as desired:

import { Button as FidesButton } from "@fidesui/react";

export const Button = () => {
  return <FidesButton colorScheme="blue">Hello World</FidesButton>;
};

Note: you can import components individually as well if you don't want to include the entire bundle.

FAQs

Package last updated on 25 Mar 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