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

authentic-react-ui

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

authentic-react-ui

React component and theming library for Authentic Insurance interfaces.

0.5.4
unpublished
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Authentic React UI

React component and theming library for Authentic Insurance interfaces.

Installation
npm install authentic-react-ui
Usage
import { ThemeProvider, Box, Text, Button } from "authentic-react-ui";
import "authentic-react-ui/dist/style.css";

function App() {
  return (
    <ThemeProvider
      overrides={{
        primaryColor: "#000000",
        borderRadius: 4,
        brandName: "Your Brand",
        brandLogoUrl: "https://www.your-brand.com/logo.png",
      }}
    >
      <Box centered column w="100vw" h="100vh">
        <Text variant="heading">Hello world</Text>
        <Button mt={1}>Click me</Button>
      </Box>
    </ThemeProvider>
  );
}
Resources

Theme and ThemeStyleProps

FAQs

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