Files
flood/client/source/scripts/components/icons/Close.js
John Furrow a1c039f91a Prep modals for adding torrents by file
Abstract modals into different components
Adjust modal format
2016-02-15 22:53:02 -08:00

15 lines
450 B
JavaScript

import React from 'react';
import BaseIcon from './BaseIcon';
export default class Close extends BaseIcon {
render() {
return (
<svg className={`icon icon--close ${this.props.className}`}
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
<polygon points="59.67 9.54 50.46 0.33 30 20.8 9.54 0.33 0.33 9.54 20.8 30 0.34 50.46 9.54 59.67 30 39.21 50.46 59.67 59.67 50.46 39.21 30 59.67 9.54"/>
</svg>
);
}
}