Giter Site home page Giter Site logo

Comments (2)

mikestopcontinues avatar mikestopcontinues commented on June 2, 2024 2

Jacob, thanks for the tip! I do actually use a one of those react svg loaders, but your svg-icons repo is key. That way, I can make an alternate wrapper component to the type you export here. Very cool, and thanks again!

from styled-icons.

jacobwgillespie avatar jacobwgillespie commented on June 2, 2024

Hey, definitely - two thoughts here:

First, technically you can use the style prop with Styled Icons already and it'll work, but it does also require styled-components, so that's not likely what you were looking for.

Second, the way I'm building the icon components here is by maintaining all the icon SVG files in the svg-icons repository, and then transforming those SVGs here into React components. That lets me put all the CI work into cleaning up and optimizing the SVGs into the svg-icons build, and just leave the React things here.

It's not well documented, but what I've been doing for recent projects myself is to directly import the SVG files from @svg-icons, and then configure Webpack with a SVG-to-React loader to build the React component at compile-time. Some example Webpack loaders:

But you could use any loader for Webpack or Rollup or whatever your preferred builder might be to transform the SVGs into React components.

I haven't had time to build an icon browser website for @svg-icons, but it's all the same icons as Styled Icons here, so you can just use the same website.

After configuring the loader, you import like this:

// Replace either of these:
import {IconName} from '@styled-icons/pack'
import {IconName} from '@styled-icons/pack/IconName'

// with this (note that the icon filenames are kebab-cased):
import IconName from '@svg-icons/pack/icon-name.svg'

Importing the icon SVGs directly like this should already support style: <IconName style={{...}} />

from styled-icons.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.