Build an SVG icon component in React

Damon Bauer
InstructorDamon Bauer
Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 5 years ago

Learn one way to render SVG icons as a React component. You’ll learn about the dynamic nature of SVG by passing props to a component that modify the icons properties such as colors and size.

You'll learn how to set up a stateless functional component, set up prop types and add a set of default props.

One benefit to building an individual icon component is that only the SVG markup needed for that icon will be rendered, instead of having to load an entire set of icons and only using one of them. Also, different attributes can be overridden using props, making theming and integration simple.

[00:00] I've got a base application class that renders a div. I'm using React dom to render that application class to an ID of app. Inside the render method, let's render a new component by typing location icon. This component doesn't exist yet, so let's go ahead and do that now.

[00:25] Because this icon won't need any state, we'll be making a stateless functional component. Let's start by typing const location icon. That's going to be a function. I'll use the arrow function syntax. I'll open and close parentheses. Inside the return body, I'll paste our location icon SVG.

[00:49] With this, you can see our main component is rendering the location icon component. Let's improve this location icon component by adding the ability to change some properties on the fly. Let's start by defining some prop types so a consumer of the icon knows what type of prop to pass.

[01:08] We'll start by typing location icon, prop types. Say a width, set that to React.proptypes.number, as well as for height. Next, I'll add some default props by saying location.icon default props. Set a width of 128 and a height of 128.

[01:42] All that's left to do is apply those props to the SVG itself. In the component function declaration, we can destructure the props to make them easier to use. Let's add curly braces. Inside, I'll add width and height. Inside of the SVG tag, I'll add a width attribute.

[02:04] I'll set it equal to width and set height as equal to height. In our case, we're rendering a location icon, but we're not passing a width and height as props so our default props are kicking in. We'll add two more props. I'll say pin fill. That's going to be React.proptypes.string. We'll say base fill as well as dome default props for each.

[02:39] Next, I'll add those props to our component function declaration. We'll add those props to the SVG itself by saying fill and setting its value here to pin fill. Second, I'll add fill of base fill. Again, since we haven't added any props to this location icon, all of our default props are kicking in.

[03:15] If I add another location icon, this time let's pass some props. I'll pass a width of 200 and a height of 200. I'll add pin fill and base fill. The icon on the left here is our default icon with all of our default props. The icon on the right is the icon where we've overridden all those default props.

egghead
egghead
~ 10 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today