nexxtway/react-rainbow

View on GitHub
library/exampleComponents/Icons/one.js

Summary

Maintainability
B
5 hrs
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';

const One = props => {
    const { className, style } = props;
    return (
        <svg className={className} style={style} width="81px" height="201px" viewBox="0 0 81 201">
            <g
                id="column-customization"
                stroke="none"
                strokeWidth="1"
                fill="none"
                fillRule="evenodd"
            >
                <polygon
                    id="one"
                    fill="currentColor"
                    fillRule="nonzero"
                    points="40.66625 200.333 80.6664375 200.333 80.6664375 0.333 0.667 0.333 0.667 40.3331875 40.66625 40.3331875"
                />
            </g>
        </svg>
    );
};

One.propTypes = {
    className: PropTypes.string,
    style: PropTypes.object,
};

One.defaultProps = {
    className: undefined,
    style: undefined,
};

export default One;