UNPKG

test-library-id

Version:

A nice greeter

10 lines (9 loc) 450 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var React = require("react"); var style_1 = require("./style"); var Icon = function (props) { var children = props.children, color = props.color, size = props.size, viewBox = props.viewBox; return (React.createElement(style_1.Svg, { fill: color || '', height: size || 24, width: size || 24, viewBox: viewBox || "0 0 24 24" }, children)); }; exports.default = Icon;