UNPKG

702 BJavaScriptView Raw
1function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
3import React from 'react';
4import IconAdd from './interface/IconAdd';
5
6function FakeIcon(props) {
7 return React.createElement(IconAdd, _extends({}, props, {
8 decorative: true
9 }));
10}
11
12FakeIcon.defaultProps = {
13 accessibilityLabel: '',
14 color: 'currentColor',
15 decorative: false,
16 flip: false,
17 flipVertical: false,
18 inline: false,
19 size: '1em'
20};
21export default FakeIcon;
\No newline at end of file