9.2.9 • Published 2 years ago

bpk-component-icon-css v9.2.9

Weekly downloads
188
License
Apache-2.0
Repository
github
Last release
2 years ago

bpk-component-icon

Backpack icon components.

Installation

npm install bpk-component-icon --save-dev

Basic usage

import React from 'react';
import BpkSmallFlightIcon from 'bpk-component-icon/sm/flight';
import BpkLargeAccessibilityIcon from 'bpk-component-icon/lg/accessibility';

import './icons.scss';

export default () => (
  <div>
    <BpkSmallFlightIcon className="abc-icon__flight" />
    <BpkLargeAccessibilityIcon className="abc-icon__a11y" />
  </div>
);

icons.scss:

@import '~bpk-mixins';

.abc-icon__flight {
  fill: currentColor; // see https://css-tricks.com/currentcolor/
}

.abc-icon__a11y {
  fill: $bpk-color-sky-blue;
}

Aligning to BpkButton components

import React from 'react';
import BpkButton from 'bpk-component-button';
import BpkSmallFlightIcon from 'bpk-component-icon/sm/flight';
import BpkLargeAccessibilityIcon from 'bpk-component-icon/lg/accessibility';
import { withButtonAlignment, withLargeButtonAlignment } from 'bpk-component-icon';

const AlignedBpkSmallFlightIcon = withButtonAlignment(BpkSmallFlightIcon);
const AlignedBpkLargeAccessibilityIcon = withLargeButtonAlignment(BpkLargeAccessibilityIcon);

export default () => (
  <div>
    <BpkButton>
      <AlignedBpkSmallFlightIcon />
    </BpkButton>
    <BpkButton large>
      <AlignedBpkLargeAccessibilityIcon />
    </BpkButton>
  </div>
);

RTL support

import React from 'react';
import BpkSmallFlightIcon from 'bpk-component-icon/sm/flight';
import { withRtlSupport } from 'bpk-component-icon';

import './icons.scss';

const RtlSupportedBpkSmallFlightIcon = withRtlSupport(BpkSmallFlightIcon);

export default () => (
  <RtlSupportedBpkSmallFlightIcon className="abc-icon__flight" />
);
9.2.9

2 years ago

9.2.7

2 years ago

9.2.5

2 years ago

9.2.4

2 years ago

9.2.2

2 years ago

9.2.1

2 years ago

9.1.17

2 years ago

9.1.14

2 years ago

9.1.11

2 years ago

9.1.12

2 years ago

9.1.5

2 years ago

9.1.3

2 years ago

9.1.2

2 years ago

9.1.1

3 years ago

9.0.13

3 years ago

9.0.10

3 years ago

9.0.8

3 years ago

9.0.7

3 years ago

9.0.6

3 years ago

9.0.5

3 years ago

9.0.4

3 years ago

9.0.3

3 years ago

9.0.2

3 years ago

9.0.1

3 years ago

8.4.5

3 years ago

8.4.7

3 years ago

9.0.0

3 years ago

8.4.4

3 years ago

8.4.3

3 years ago

8.4.2

3 years ago

8.4.1

3 years ago

8.4.0

3 years ago

8.3.25

3 years ago

8.3.26

3 years ago

8.3.24

3 years ago

8.3.23

3 years ago

8.3.22

3 years ago

8.3.21

3 years ago

8.3.20

3 years ago

8.3.19

3 years ago

8.3.18

3 years ago

8.3.17

3 years ago

8.3.15

3 years ago

8.3.16

3 years ago

8.3.14

3 years ago

8.3.13

3 years ago

8.3.12

3 years ago

8.3.11

3 years ago

8.3.10

3 years ago

8.3.9

3 years ago

8.3.8

3 years ago

8.3.7

3 years ago

8.3.6

3 years ago

8.3.5

3 years ago

8.3.4

3 years ago

8.3.2

3 years ago

8.3.3

3 years ago

8.2.30

3 years ago

8.2.29

4 years ago

8.2.28

4 years ago

8.2.27

4 years ago

8.2.26

4 years ago

8.2.24

4 years ago

8.2.23

4 years ago

8.2.22

4 years ago

8.2.21

4 years ago

8.2.20

4 years ago

8.2.19

4 years ago

8.2.17

4 years ago

8.2.16

4 years ago

8.2.15

4 years ago

8.2.10

4 years ago

8.2.9

4 years ago

8.2.8

4 years ago

8.2.6

4 years ago

8.2.5

4 years ago

8.2.4

4 years ago

8.2.3

4 years ago