Files
webawesome/docs/pages/components/icon-button.md
Cory LaViska 015429e05d sl => wa
2023-09-08 13:45:49 -04:00

3.9 KiB

meta, layout
meta layout
title description
Icon Button Icons buttons are simple, icon-only buttons that can be used for actions and in toolbars.
component

For a full list of icons that come bundled with Web Awesome, refer to the icon component.

<wa-icon-button name="gear" label="Settings"></wa-icon-button>
import WaIconButton from '@shoelace-style/shoelace/dist/react/icon-button';

const App = () => <WaIconButton name="gear" label="Settings" />;

Examples

Sizes

Icon buttons inherit their parent element's font-size.

<wa-icon-button name="pencil" label="Edit" style="font-size: 1.5rem;"></wa-icon-button>
<wa-icon-button name="pencil" label="Edit" style="font-size: 2rem;"></wa-icon-button>
<wa-icon-button name="pencil" label="Edit" style="font-size: 2.5rem;"></wa-icon-button>

{% raw %}

import WaIconButton from '@shoelace-style/shoelace/dist/react/icon-button';

const App = () => (
  <>
    <WaIconButton name="pencil" label="Edit" style={{ fontSize: '1.5rem' }} />
    <WaIconButton name="pencil" label="Edit" style={{ fontSize: '2rem' }} />
    <WaIconButton name="pencil" label="Edit" style={{ fontSize: '2.5rem' }} />
  </>
);

{% endraw %}

Colors

Icon buttons are designed to have a uniform appearance, so their color is not inherited. However, you can still customize them by styling the base part.

<div class="icon-button-color">
  <wa-icon-button name="type-bold" label="Bold"></wa-icon-button>
  <wa-icon-button name="type-italic" label="Italic"></wa-icon-button>
  <wa-icon-button name="type-underline" label="Underline"></wa-icon-button>
</div>

<style>
  .icon-button-color wa-icon-button::part(base) {
    color: #b00091;
  }

  .icon-button-color wa-icon-button::part(base):hover,
  .icon-button-color wa-icon-button::part(base):focus {
    color: #c913aa;
  }

  .icon-button-color wa-icon-button::part(base):active {
    color: #960077;
  }
</style>
import WaIconButton from '@shoelace-style/shoelace/dist/react/icon-button';

const css = `
  .icon-button-color wa-icon-button::part(base) {
    color: #b00091;
  }

  .icon-button-color wa-icon-button::part(base):hover,
  .icon-button-color wa-icon-button::part(base):focus {
    color: #c913aa;
  }

  .icon-button-color wa-icon-button::part(base):active {
    color: #960077;
  }
`;

const App = () => (
  <>
    <div className="icon-button-color">
      <WaIconButton name="type-bold" label="Bold" />
      <WaIconButton name="type-italic" label="Italic" />
      <WaIconButton name="type-underline" label="Underline" />
    </div>

    <style>{css}</style>
  </>
);

Use the href attribute to convert the button to a link.

<wa-icon-button name="gear" label="Settings" href="https://example.com" target="_blank"></wa-icon-button>
import WaIconButton from '@shoelace-style/shoelace/dist/react/icon-button';

const App = () => <WaIconButton name="gear" label="Settings" href="https://example.com" target="_blank" />;

Icon Button with Tooltip

Wrap a tooltip around an icon button to provide contextual information to the user.

<wa-tooltip content="Settings">
  <wa-icon-button name="gear" label="Settings"></wa-icon-button>
</wa-tooltip>
import WaIconButton from '@shoelace-style/shoelace/dist/react/icon-button';
import WaTooltip from '@shoelace-style/shoelace/dist/react/tooltip';

const App = () => (
  <WaTooltip content="Settings">
    <WaIconButton name="gear" label="Settings" />
  </WaTooltip>
);

Disabled

Use the disabled attribute to disable the icon button.

<wa-icon-button name="gear" label="Settings" disabled></wa-icon-button>
import WaIconButton from '@shoelace-style/shoelace/dist/react/icon-button';

const App = () => <WaIconButton name="gear" label="Settings" disabled />;