Socket
Book a DemoInstallSign in
Socket

@springernature/global-button

Package Overview
Dependencies
Maintainers
16
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@springernature/global-button

Button styles to use on buttons and links

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
27
22.73%
Maintainers
16
Weekly downloads
 
Created
Source

Global Button

Button styles to use on buttons and links.

Usage

To include global-button in your application, you need to choose ONE brand from those available. The DEFAULT brand is included in all other brands, and any settings that are not configured will fall back to default.

// Pick ONE of the brands below to include
@import '@springernature/global-button/scss/10-settings/default';
@import '@springernature/global-button/scss/10-settings/springer';
@import '@springernature/global-button/scss/10-settings/nature';

// Incude this with your other mixins
@import '@springernature/global-button/scss/30-mixins/button';

// Incude this with your other components
@import '@springernature/global-button/scss/50-components/button';

Basic usage

<button class="c-button">text</button>

<a class="c-button" href="#">text</a> 

Themes

Add theme classes for different branding styles. If a theme does not exist for the brand you are using it will fallback to the default syle.

Primary

<button class="c-button c-button--primary">text</button>

Ghost

<button class="c-button c-button--ghost">text</button>

Disabled

<button class="c-button c-button--disabled" disabled>text</button>

Variants

Variant modifiers can be added to the default class, as well as to themes.

Small

<button class="c-button c-button--small">text</button>

Large

<button class="c-button c-button--large">text</button>

Full width

<button class="c-button c-button--full-width">text</button>

Icon left

<button class="c-button c-button--icon-left">
    <svg></svg>
    <span>text</span>
</button>

Icon right

<button class="c-button c-button--icon-right">
    <span>text</span>
    <svg></svg>
</button>

Keywords

button

FAQs

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