6.1.0 • Published 2 years ago

@heycar-uikit/icons v6.1.0

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
2 years ago

HeyCar-UIKit - Icons

Tests Coverage Status Demo build Commitizen friendly

Installation

To install and save in your package.json dependencies, run the command below using npm:

npm install @heycar-uikit/icons

Usage

Semantic vector graphics. Before using icons, you need to install import icons using one of these two options:

  • Option 1:
import CarIcon from '@heycar-uikit/icons/Car';
import CloseIcon from '@heycar-uikit/icons/Close';

function App() {
  return (
    <div>
      <Button
        leftIcon={<CarIcon />}
        size="large"
        color="primary"
        variant="outlined"
      >
        Hello World
      </Button>
      <CloseIcon />
    </div>
  );
}
  • Option 2:
import { Car, Close } from '@heycar-uikit/icons';

function App() {
  return (
    <div>
      <Button
        leftIcon={<CarIcon />}
        size="large"
        color="primary"
        variant="outlined"
      >
        Hello World
      </Button>
      <CloseIcon />
    </div>
  );
}

Documentation and sandbox

Storybook documentation and sandbox.

6.1.0

2 years ago

5.0.0

2 years ago

6.0.0

2 years ago

4.1.0

2 years ago

4.2.1

2 years ago

4.2.0

2 years ago

3.0.3

3 years ago

3.0.2

3 years ago

3.1.0

3 years ago

3.0.1

3 years ago

3.0.0

3 years ago

4.0.0

3 years ago

1.8.1

3 years ago

1.7.5

3 years ago

2.0.0

3 years ago

1.7.3

3 years ago

1.7.2

3 years ago

1.6.3

3 years ago

1.7.1

3 years ago

1.6.1

3 years ago

1.5.1

3 years ago

1.4.0

3 years ago

1.1.2

3 years ago

1.3.1

3 years ago

1.2.1

3 years ago

1.1.1

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago