Gathering detailed insights and metrics for @nextpy/button
Gathering detailed insights and metrics for @nextpy/button
Gathering detailed insights and metrics for @nextpy/button
Gathering detailed insights and metrics for @nextpy/button
Chakra UI is a component system for building SaaS products with speed ⚡️
npm install @nextpy/button
Typescript
Module System
Node Version
NPM Version
@chakra-ui/cli@3.22.0
Updated on Jul 07, 2025
@chakra-ui/panda-preset@3.22.0
Updated on Jul 07, 2025
@chakra-ui/react@3.22.0
Updated on Jul 07, 2025
@chakra-ui/charts@3.22.0
Updated on Jul 07, 2025
@chakra-ui/panda-preset@3.21.1
Updated on Jun 28, 2025
@chakra-ui/charts@3.21.1
Updated on Jun 28, 2025
TypeScript (82.2%)
MDX (16.96%)
JavaScript (0.71%)
CSS (0.07%)
HTML (0.06%)
Dockerfile (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
39,354 Stars
10,958 Commits
3,443 Forks
201 Watchers
10 Branches
695 Contributors
Updated on Jul 13, 2025
Latest Version
2.1.0
Package Id
@nextpy/button@2.1.0
Unpacked Size
4.81 kB
Size
2.12 kB
File Count
3
NPM Version
10.1.0
Node Version
20.7.0
Published on
Nov 09, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
2
Buttons are used as triggers for actions. They are used in forms, toolbars, dialog footers and as stand-alone action triggers.
1yarn add @chakra-ui/button 2 3# or 4 5npm i @chakra-ui/button
1import { Button } from "@chakra-ui/button"
1<Button colorScheme="green">Button</Button>
Use the size
prop to change the size of the button. You can set the value to
xs
, sm
, md
, or lg
.
1<Stack>
2 <Button size="xs">Button</Button>
3 <Button size="sm">Button</Button>
4 <Button size="md">Button</Button>
5 <Button size="lg">Button</Button>
6</Stack>
Use the variant
prop to change the visual style of the Button. You can set the
value to solid
, ghost
, outline
, or link
.
1<ButtonGroup> 2 <Button variant="solid">Button</Button> 3 <Button variant="outline">Button</Button> 4 <Button variant="ghost">Button</Button> 5 <Button variant="link">Button</Button> 6</ButtonGroup>
You can add left and right icons to the Button components.
1<ButtonGroup> 2 <Button leftIcon={<EmailIcon />} variant="solid"> 3 Email 4 </Button> 5 <Button rightIcon={<ArrowForwardIcon />} variant="outline"> 6 Call us 7 </Button> 8</ButtonGroup>
Pass isLoading
prop to the Button component to show its loading state. You can
optionally pass loadingText
prop.
You can also use a custom spinner to render your own spinner component.
1<Stack> 2 <Button isLoading colorScheme="teal" variant="solid"> 3 Email 4 </Button> 5 6 <Button 7 isLoading 8 colorScheme="teal" 9 variant="outline" 10 spinner={<BarSpinner />} 11 > 12 Submit 13 </Button> 14</Stack>
No vulnerabilities found.
Reason
30 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
7 existing vulnerabilities detected
Details
Reason
Found 5/25 approved changesets -- score normalized to 2
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More