@ozen-ui/icons
Version:
A collection of icons
20 lines (19 loc) • 978 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FundFilledIcon = void 0;
var tslib_1 = require("tslib");
var react_1 = tslib_1.__importStar(require("react"));
var FundFilledMIcon_1 = require("./FundFilledMIcon");
var FundFilledSIcon_1 = require("./FundFilledSIcon");
exports.FundFilledIcon = (0, react_1.forwardRef)(function (_a, ref) {
var size = _a.size, otherProps = tslib_1.__rest(_a, ["size"]);
switch (size) {
case 's':
return react_1.default.createElement(FundFilledSIcon_1.FundFilledSIcon, tslib_1.__assign({}, otherProps, { ref: ref }));
case 'm':
return react_1.default.createElement(FundFilledMIcon_1.FundFilledMIcon, tslib_1.__assign({}, otherProps, { ref: ref }));
default:
return react_1.default.createElement(FundFilledMIcon_1.FundFilledMIcon, tslib_1.__assign({}, otherProps, { ref: ref }));
}
});
exports.FundFilledIcon.displayName = 'FundFilledIcon';