UNPKG

optimizely-oui

Version:

Optimizely's Component Library.

49 lines (38 loc) 1.15 kB
import React from "react"; import PropTypes from "prop-types"; /* eslint-disable max-len */ var HistoryIcon16 = require("!babel?presets[]=react!svg-jsx-loader!oui-icons/src/16/history-16.svg"); var HistoryIcon24 = require("!babel?presets[]=react!svg-jsx-loader!oui-icons/src/24/history-24.svg"); /* eslint-enable max-len */ /** * @param {Object} props - Properties passed to component * @returns {ReactElement} */ var HistoryIcon = function HistoryIcon(props) { var Svg; var sizeclass; switch (props.size) { case 16: Svg = HistoryIcon16; sizeclass = "oui-icon--16"; break; case 24: Svg = HistoryIcon24; sizeclass = "oui-icon--24"; break; default: Svg = HistoryIcon16; sizeclass = "oui-icon--".concat(props.size); } return React.createElement(Svg, { className: "oui-icon display--inline " + sizeclass, "data-test-section": props.testSection }); }; HistoryIcon.propTypes = { /** Size of the icon */ size: PropTypes.oneOf([12, 16, 24]).isRequired, /** Hook for automated JavaScript tests */ testSection: PropTypes.string }; export default HistoryIcon;