@ozen-ui/icons
Version:
A collection of icons
17 lines (16 loc) • 731 B
JavaScript
import { __assign, __rest } from "tslib";
import React, { forwardRef } from 'react';
import { CalculatorMIcon } from './CalculatorMIcon';
import { CalculatorSIcon } from './CalculatorSIcon';
export var CalculatorIcon = forwardRef(function (_a, ref) {
var size = _a.size, otherProps = __rest(_a, ["size"]);
switch (size) {
case 's':
return React.createElement(CalculatorSIcon, __assign({}, otherProps, { ref: ref }));
case 'm':
return React.createElement(CalculatorMIcon, __assign({}, otherProps, { ref: ref }));
default:
return React.createElement(CalculatorMIcon, __assign({}, otherProps, { ref: ref }));
}
});
CalculatorIcon.displayName = 'CalculatorIcon';