Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@snack-uikit/button

Package Overview
Dependencies
Maintainers
0
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@snack-uikit/button

Кнопка в различных вариациях

  • 0.19.2-preview-9a7f316b.0
  • preview
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
924
increased by66.49%
Maintainers
0
Weekly downloads
 
Created
Source

Button

Installation

npm i @snack-uikit/button

TODO

  • Add transition/animation
  • Fix onClick type (button & anchor)
  • R&D two icons in a button
  • R&D type prop

Example

import { ButtonFilled, ButtonFunction, ButtonSimple } from "@snack-uikit/button";
import { Counter } from "@snack-uikit/counter";
import { DaySVG } from "@snack-uikit/icons";

<ButtonFilled
  label='Navigate'
  onClick={() => navigate()}
  icon={<DaySVG />}
  size='m'
  appearance='primary'
  href='https://cloud.ru/'
  target='_blank'
  disabled={true}
  loading={true}
/>

<ButtonSimple
  label='Submit'
  onClick={() => sendForm()}
/>

const CounterProps = { 
  value: 7, 
  appearance: 'red',
}

<ButtonFunction
  label='Unread Messages'
  onClick={() => openMessages()}
  counter={CounterProps}
/>

ButtonFilled

Props

nametypedefault valuedescription
hrefstring-Ссылка
targetHTMLAttributeAnchorTarget_blankHTML-аттрибут target
classNamestring-CSS-класс
disabledboolean-Флаг неактивности компонента
iconReactElement-Иконка
labelstring-Текст кнопки
loadingboolean-Флаг состояния загрузки
onClickMouseEventHandler<HTMLElement>-Колбек обработки клика
onKeyDownKeyboardEventHandler<HTMLElement>-Колбек обработки нажатия клавиши
onFocusFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки фокуса
onBlurFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки блюра
sizeenum Size: "xs", "s", "m", "l"sРазмер
appearanceenum Appearance: "primary", "neutral", "destructive"primaryВнешний вид кнопки
type"submit" | "reset" | "button"buttonHTML-аттрибут type
tabIndexnumber-HTML-аттрибут tab-index
fullWidthboolean-Сделать кнопку во всю ширину
refLegacyRef<HTMLButtonElement | HTMLAnchorElement>-Allows getting a ref to the component instance. Once the component unmounts, React will set ref.current to null (or call the ref with null if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}
keyKey-

ButtonSimple

Props

nametypedefault valuedescription
hrefstring-Ссылка
targetHTMLAttributeAnchorTarget_blankHTML-аттрибут target
classNamestring-CSS-класс
disabledboolean-Флаг неактивности компонента
iconReactElement-Иконка
labelstring-Текст кнопки
loadingboolean-Флаг состояния загрузки
onClickMouseEventHandler<HTMLElement>-Колбек обработки клика
onKeyDownKeyboardEventHandler<HTMLElement>-Колбек обработки нажатия клавиши
onFocusFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки фокуса
onBlurFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки блюра
sizeenum Size: "xs", "s", "m", "l"sРазмер
appearanceenum Appearance: "primary", "neutral", "destructive"neutralВнешний вид кнопки
type"submit" | "reset" | "button"buttonHTML-аттрибут type
tabIndexnumber-HTML-аттрибут tab-index
fullWidthboolean-Сделать кнопку во всю ширину
refLegacyRef<HTMLButtonElement | HTMLAnchorElement>-Allows getting a ref to the component instance. Once the component unmounts, React will set ref.current to null (or call the ref with null if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}
keyKey-

ButtonOutline

Props

nametypedefault valuedescription
hrefstring-Ссылка
targetHTMLAttributeAnchorTarget_blankHTML-аттрибут target
classNamestring-CSS-класс
disabledboolean-Флаг неактивности компонента
iconReactElement-Иконка
labelstring-Текст кнопки
loadingboolean-Флаг состояния загрузки
onClickMouseEventHandler<HTMLElement>-Колбек обработки клика
onKeyDownKeyboardEventHandler<HTMLElement>-Колбек обработки нажатия клавиши
onFocusFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки фокуса
onBlurFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки блюра
sizeenum Size: "xs", "s", "m", "l"sРазмер
appearanceenum Appearance: "primary", "neutral", "destructive"primaryВнешний вид кнопки
type"submit" | "reset" | "button"buttonHTML-аттрибут type
tabIndexnumber-HTML-аттрибут tab-index
fullWidthboolean-Сделать кнопку во всю ширину
refLegacyRef<HTMLButtonElement | HTMLAnchorElement>-Allows getting a ref to the component instance. Once the component unmounts, React will set ref.current to null (or call the ref with null if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}
keyKey-

ButtonTonal

Props

nametypedefault valuedescription
hrefstring-Ссылка
targetHTMLAttributeAnchorTarget_blankHTML-аттрибут target
classNamestring-CSS-класс
disabledboolean-Флаг неактивности компонента
iconReactElement-Иконка
labelstring-Текст кнопки
loadingboolean-Флаг состояния загрузки
onClickMouseEventHandler<HTMLElement>-Колбек обработки клика
onKeyDownKeyboardEventHandler<HTMLElement>-Колбек обработки нажатия клавиши
onFocusFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки фокуса
onBlurFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки блюра
sizeenum Size: "xs", "s", "m", "l"sРазмер
appearanceenum Appearance: "primary", "neutral", "destructive"primaryВнешний вид кнопки
type"submit" | "reset" | "button"buttonHTML-аттрибут type
tabIndexnumber-HTML-аттрибут tab-index
fullWidthboolean-Сделать кнопку во всю ширину
refLegacyRef<HTMLButtonElement | HTMLAnchorElement>-Allows getting a ref to the component instance. Once the component unmounts, React will set ref.current to null (or call the ref with null if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}
keyKey-

ButtonFunction

Props

nametypedefault valuedescription
hrefstring-Ссылка
targetHTMLAttributeAnchorTarget_blankHTML-аттрибут target
classNamestring-CSS-класс
disabledboolean-Флаг неактивности компонента
iconReactElement-Иконка
iconPositionenum IconPosition: "before", "after"afterПозиция иконки
labelstring-Текст кнопки
loadingboolean-Флаг состояния загрузки
onClickMouseEventHandler<HTMLElement>-Колбек обработки клика
onKeyDownKeyboardEventHandler<HTMLElement>-Колбек обработки нажатия клавиши
onFocusFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки фокуса
onBlurFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки блюра
sizeenum Size: "xs", "s", "m", "l"sРазмер
appearanceenum Appearance: "primary", "neutral", "destructive"neutralВнешний вид кнопки
type"submit" | "reset" | "button"buttonHTML-аттрибут type
tabIndexnumber-HTML-аттрибут tab-index
fullWidthboolean-Сделать кнопку во всю ширину
counterCounterInButtonProps-Пропсы каунтера в кнопке
refLegacyRef<HTMLButtonElement | HTMLAnchorElement>-Allows getting a ref to the component instance. Once the component unmounts, React will set ref.current to null (or call the ref with null if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}
keyKey-

ButtonElevated

Props

nametypedefault valuedescription
hrefstring-Ссылка
targetHTMLAttributeAnchorTarget_blankHTML-аттрибут target
classNamestring-CSS-класс
disabledboolean-Флаг неактивности компонента
iconReactElement-Иконка
loadingboolean-Флаг состояния загрузки
onClickMouseEventHandler<HTMLElement>-Колбек обработки клика
onKeyDownKeyboardEventHandler<HTMLElement>-Колбек обработки нажатия клавиши
onFocusFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки фокуса
onBlurFocusEventHandler<HTMLButtonElement | HTMLAnchorElement>-Колбек обработки блюра
type"submit" | "reset" | "button"buttonHTML-аттрибут type
tabIndexnumber-HTML-аттрибут tab-index
sizeenum Size: "xs", "s", "m", "l"sРазмер
refLegacyRef<HTMLButtonElement | HTMLAnchorElement>-Allows getting a ref to the component instance. Once the component unmounts, React will set ref.current to null (or call the ref with null if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}
keyKey-

FAQs

Package last updated on 12 Nov 2024

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc