styled-icons

💅 Popular icon packs like Font Awesome, Material Design, and Octicons, available as React Styled Components

MIT License

Downloads
2.3M
Stars
2.1K
Committers
19

Bot releases are visible (Hide)

Minor Changes

Minor Changes

Minor Changes

Minor Changes

Minor Changes

Minor Changes

Minor Changes

styled-icons - https://github.com/styled-icons/styled-icons/releases/tag/[email protected]

Published by icon-bot over 4 years ago

Minor Changes

  • #1286: Revamp all build tooling, build icon source files with Babel (TypeScript still type-checks and builds .d.ts files) (57170c8, @jacobwgillespie)

Patch Changes

styled-icons - v10.5.0

Published by icon-bot over 4 years ago

  • Upgrade Ionicons to v5.1.2
  • Fix issue where the @styled-icons/styled-icon accidentally built as ES6 instead of ES5, breaking IE11
styled-icons - v10.4.2

Published by icon-bot over 4 years ago

  • Fix issue where @styled-icons/simple-icons was missing from the styled-icons dependencies
styled-icons - v10.4.1

Published by icon-bot over 4 years ago

  • Fix issue where some new icon packs were mistakenly omitted from the styled-icons mono-package
styled-icons - v10.4.0

Published by icon-bot over 4 years ago

  • Add Simple Icons, a large collection of icons for popular brands
  • Upgrade Feather Icons to v4.28.0
  • Upgrade Font Awesome icons to v5.13.1
  • Upgrade Heroicons to v0.3.6
  • Upgrade Octicons to v10.0.0
  • Upgrade Remixicon icons to v2.5.0
styled-icons - v10.3.0

Published by icon-bot over 4 years ago

  • Add Ionicons variants (ionicons-sharp, ionicons-solid, ionicons-outline) (@Jensderond)
styled-icons - v10.2.1

Published by icon-bot over 4 years ago

  • Fix issue where the new Eva Icons packs weren't listed in styled-icon's dependencies
styled-icons - v10.2.0

Published by icon-bot over 4 years ago

  • Add Eva Icons variants (evaicons-solid, evaicons-outline) (@Jensderond)
styled-icons - v10.1.0

Published by icon-bot over 4 years ago

  • Upgrade Octicons to v9.5.0
styled-icons - v10.0.0

Published by icon-bot over 4 years ago

Styled Icons v10 introduces individual NPM modules for icon packs, originally introduced in v9, as the preferred way to install Styled Icons. It also deprecates single icon imports (styled-icons/PACK/ICON) on the main styled-icons package in favor of the new individual icon packages (@styled-icons/PACK/ICON).

To upgrade, you only need to update your code if you import icons individually (styled-icons/PACK/ICON) - you will need to change the following:

import {Icon} from 'styled-icons/pack/icon'

To the following (also install the @styled-icons/pack module):

import {Icon} from '@styled-icons/pack/icon'

All other imports from styled-icons still function as before (for instance import {Icon} from 'styled-icons/pack'), though you are welcome to migrate to the new @styled-icons/PACK modules. See the README for a list of icon packs.

  • (breaking) Remove individual icon imports from the styled-icons package (styled-icons/PACK/ICON)
  • Update documentation to introduce new @styled-icons/PACK NPM modules as the first-class install method
styled-icons - v9.6.0

Published by icon-bot over 4 years ago

  • Add Material icon variants (material-outlined, material-rounded, material-sharp, material-twotone)
styled-icons - v9.5.0

Published by icon-bot over 4 years ago

styled-icons - v9.4.1

Published by icon-bot over 4 years ago

  • Fix issue with peerDependencies that prevented Styled Icons from being used with Yarn 2 (berry).