🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@chakra-ui/button

Package Overview
Dependencies
Maintainers
2
Versions
456
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chakra-ui/button

A React component that is a base button.

2.1.0
latest
Source
npm
Version published
Weekly downloads
537K
17.22%
Maintainers
2
Weekly downloads
 
Created

What is @chakra-ui/button?

@chakra-ui/button is a component from the Chakra UI library that provides a set of accessible, customizable, and composable button components for React applications. It allows developers to create buttons with various styles, sizes, and behaviors easily.

What are @chakra-ui/button's main functionalities?

Basic Button

This code demonstrates how to create a basic button with a blue color scheme using the @chakra-ui/button package.

import { Button } from '@chakra-ui/react';

function App() {
  return <Button colorScheme='blue'>Button</Button>;
}

Button Sizes

This code demonstrates how to create buttons of different sizes (small, medium, and large) using the @chakra-ui/button package.

import { Button } from '@chakra-ui/react';

function App() {
  return (
    <>
      <Button size='sm'>Small</Button>
      <Button size='md'>Medium</Button>
      <Button size='lg'>Large</Button>
    </>
  );
}

Button Variants

This code demonstrates how to create buttons with different variants (solid, outline, and ghost) using the @chakra-ui/button package.

import { Button } from '@chakra-ui/react';

function App() {
  return (
    <>
      <Button variant='solid'>Solid</Button>
      <Button variant='outline'>Outline</Button>
      <Button variant='ghost'>Ghost</Button>
    </>
  );
}

Button with Icon

This code demonstrates how to create a button with an icon using the @chakra-ui/button package.

import { Button } from '@chakra-ui/react';
import { FaArrowRight } from 'react-icons/fa';

function App() {
  return <Button rightIcon={<FaArrowRight />} colorScheme='teal'>Button with Icon</Button>;
}

Other packages similar to @chakra-ui/button

Keywords

button

FAQs

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