@hig/icon-button

3.1.1 • Public • Published

Icon Button

Action buttons that include an icon only, with no background. Useful for compact displays or toolbars with a number of related controls.

Read more about where and how to use IconButton on the website.

Getting started

yarn add @hig/icon-button @hig/theme-context @hig/theme-data

Import the component

import IconButton from '@hig/icon-button';

Typical usage

Use the name prop to render a provided icon by name.

import { Assets24 } from "@hig/icons"

function MyComponent() {
  return (
    <IconButton
      icon={<Assets24 />}
      onClick={() => console.log('Clicked it.')}
    />
  );
}

Custom CSS

Use the className prop to pass in a css class name to the outermost container of the component. The class name will also pass down to most of the other styled elements within the component.

Icon-Button also has a stylesheet prop that accepts a function wherein you can modify Icon Button's styles. The original styles, props, current theme data and theme meta will be passed to your custom stylesheet function, and it should return an object with the same structure as the original styles. For instance

function customStylesheet(styles, props, themeData, themeMeta) {
  return {
    ...styles,
    iconButton: {
      ...styles.iconButton,
      backgroundColor: "yellow"
    },
    iconSpacer: {
      ...styles.iconSpacer,
      backgroundColor: props.hasFocus
        ? themeData["colorScheme.reference.base"]
        : themeData["colorScheme.reference.accent"]
    },
    iconButtonIcon: {
      ...styles.iconButtonIcon,
      padding: themeData["density.spacings.medium"]
    }
  };
}

<IconButton stylesheet={customStylesheet} />

Providing a custom SVG

import myIcon from 'my-icon.svg';

function MyComponent() {
  return (
    <IconButton
      icon={myIcon}
      onClick={() => console.log('Clicked it.')}
    />
  );
}

Readme

Keywords

none

Package Sidebar

Install

npm i @hig/icon-button

Weekly Downloads

36

Version

3.1.1

License

Apache-2.0

Unpacked Size

53.2 kB

Total Files

5

Last publish

Collaborators

  • hig-bot
  • nfiniteset
  • wmui51
  • staceyshk