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)

styled-icons - v6.6.0

Published by icon-bot over 4 years ago

  • Upgrade Feather icons to v4.12.0
styled-icons - v6.5.1

Published by icon-bot over 4 years ago

  • Upgrade Boxicons to v1.9.1 (fixes issue with missing icons)
styled-icons - v6.5.0

Published by icon-bot over 4 years ago

  • Upgrade Boxicons to v1.9.0
styled-icons - v6.4.0

Published by icon-bot over 4 years ago

  • Upgrade Octicons to v8.3.0
  • Upgrade Cryptocurrency Icons to v0.10.0
styled-icons - v6.3.0

Published by icon-bot over 4 years ago

  • Fix issue where TypeScript compiler would evaluate all icon files, regardless of what icons were imported, significantly increasing compile time. This was due to the StyledIcon TypeScript type. To resolve, there is now a styled-icons/types import for that type. If you previously imported it from styled-icons, you should update to speed up your builds.

    If you previously had this code:

    import {StyledIcon} from 'styled-icons'
    
    // or
    import {StyledIconProps} from 'styled-icons'
    

    You should replace it with:

    import {StyledIcon} from 'styled-icons/types'
    
    import {StyledIconProps} from 'styled-icons/types'
    
styled-icons - v6.2.1

Published by icon-bot over 4 years ago

  • Fix issue where custom props that were not valid DOM attributes were passed through to the <svg> element
styled-icons - v6.2.0

Published by icon-bot over 4 years ago

  • Add Cryptocurrency icon pack
styled-icons - v6.12.0

Published by icon-bot over 4 years ago

  • Upgrade Octicons to v8.4.0
styled-icons - v6.11.0

Published by icon-bot over 4 years ago

  • Upgrade Feather icons to v4.17.0
styled-icons - v6.10.0

Published by icon-bot over 4 years ago

  • Upgrade Feather icons to v4.16.0
styled-icons - v6.1.0

Published by icon-bot over 4 years ago

  • Add Typicons icon pack
styled-icons - v6.0.1

Published by icon-bot over 4 years ago

  • No code changes, fix issue with broken CI deployment
styled-icons - v6.0.0

Published by icon-bot over 4 years ago

  • (breaking) remove an export of the StyledIconProps TypeScript type from each of the icon pack exports. This export was previously accidental. Each of the exports from the icon packs was assumed to be an icon, so unless you are depending on the extra export, you do not need to change anything.

    As an example, if you have this code:

    import {StyledIconProps} from 'styled-icons/material' // or any other pack
    

    You should replace it with:

    import {StyledIconProps} from 'styled-icons'
    
  • Use Babel to build the library files

    • Reduces bundle size by avoiding duplication of helper functions
    • Pre-processes Styled Icons with the Styled Components Babel plugin to fix issues with server-side rendering
styled-icons - v5.8.0

Published by icon-bot over 4 years ago

  • Add Icomoon free icons
styled-icons - v5.7.0

Published by icon-bot over 4 years ago

  • Upgrade Feather icons to v4.10.0
  • Wrap SVGs with React.forwardRef to fix Styled Components as prop, attrs, and the ref prop
  • Use Next.js to build the website
styled-icons - v5.6.0

Published by icon-bot over 4 years ago

  • Upgrade FontAwesome to v5.6.3
styled-icons - v5.5.0

Published by icon-bot over 4 years ago

  • Upgrade FontAwesome to v5.6.1
styled-icons - v5.4.0

Published by icon-bot over 4 years ago

  • Upgrade FontAwesome to v5.6.0
styled-icons - v5.3.0

Published by icon-bot over 4 years ago

  • Upgrade Octicons to v8.2.0
styled-icons - v5.2.2

Published by icon-bot over 4 years ago

  • Fix issue where Boxicon and Material icons were missing from published package