Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30d2ba52c94a4a40bfde80d2e7e59e7bf4229255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<p align="center">
  <a href="https://getbootstrap.com/">
    <img src="https://getbootstrap.com/docs/4.3/assets/brand/bootstrap-solid.svg" alt="Bootstrap logo" width="72" height="72">
  </a>
</p>

<h3 align="center">Bootstrap Icons</h3>

<p align="center">
  Official open source icon library for Bootstrap.
  <br>
  <a href="https://icons.getbootstrap.com/"><strong>Explore Bootstrap Icons »</strong></a>
  <br>
  <br>
  <a href="https://getbootstrap.com/docs/4.3/">Bootstrap</a>
  ·
  <a href="https://themes.getbootstrap.com/">Themes</a>
  ·
  <a href="https://blog.getbootstrap.com/">Blog</a>
</p>

## Install

```
npm i bootstrap-icons --save
```

## Development

Clone the repo, install dependencies, and start the Jekyll server locally.

```
git clone https://github.com/twbs/icons/
cd icons
gem install jekyll
npm i
jekyll serve
```

Then open http://localhost:4000 in your browser.

## Publishing

Docs are published via an npm script that builds the Jekyll site, creates a temporary Git repo, and force pushes that to our `gh-pages` branch. This circumvents issues with GitHub Pages not accepting third party plugins and symlinked directories.

```
npm run publish
```

## Todos

Help wanted if you have ideas how to tackle these!

- [ ] Update readme with install and usage guidelines
- [ ] Add npm script for reprocessing icons (HTML, attribute order, generate class names)
- [ ] Add copy to clipboard for SVG code in the docs
- [ ] Alternate distribution and usage methods (e.g., JS library, React components, etc)
- [ ] Publish to GitHub Package Registry
- [ ] Add GitHub Actions support for processing new icons from PRs?