0.10.3 • Published 6 years ago

react-show-svg v0.10.3

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

React show svg

Build Status

Simple react component that transforms plain svg to usable icon.

TL;DR

import React from 'react';
import ReactShowSvg from 'react-show-svg';
import SvgIcon from 'path/to/icon.svg';

class App extends React.Component {
  render() {
    return (
      <ReactShowSvg
        size="30px"
        fill="#000000"
        icon={SvgIcon}
      />
    );
  }
}

NPM

$ npm install react-show-svg --save

Yarn

$ yarn add react-show-svg

Usage

Import raw svg file with svg-inline-loader and pass it as icon property.

You can also pass width & height or size properties ( pass size if you want width & height to be equal ).

IMPORTANT - Update your webpack config file:

const config = {
  module: {
    rules: [
      {
        test: /\.svg$/,
        use: [
          {
            loader: 'svg-inline-loader'
          }
        ]
      }
    ]
  }
}

API

  • icon: string
  • width: string
  • height: string
  • size: string ( width & height )
  • fill: string
  • className: string
  • onClick: function
  • ref: function
  • id: string

Dependencies

0.10.3

6 years ago

0.10.2

6 years ago

0.10.1

6 years ago