UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

144 lines (109 loc) 4.64 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.styles = undefined; var _extends2 = require('babel-runtime/helpers/extends'); var _extends3 = _interopRequireDefault(_extends2); var _objectWithoutProperties2 = require('babel-runtime/helpers/objectWithoutProperties'); var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2); var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of'); var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf); var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck'); var _classCallCheck3 = _interopRequireDefault(_classCallCheck2); var _createClass2 = require('babel-runtime/helpers/createClass'); var _createClass3 = _interopRequireDefault(_createClass2); var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn'); var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2); var _inherits2 = require('babel-runtime/helpers/inherits'); var _inherits3 = _interopRequireDefault(_inherits2); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _classnames = require('classnames'); var _classnames2 = _interopRequireDefault(_classnames); var _withStyles = require('../styles/withStyles'); var _withStyles2 = _interopRequireDefault(_withStyles); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var babelPluginFlowReactPropTypes_proptype_Node = require('react').babelPluginFlowReactPropTypes_proptype_Node || require('prop-types').any; var styles = exports.styles = function styles(theme) { return { root: { display: 'inline-block', fill: 'currentColor', height: 24, width: 24, userSelect: 'none', flexShrink: 0, transition: theme.transitions.create('fill', { duration: theme.transitions.duration.shorter }) } }; }; var babelPluginFlowReactPropTypes_proptype_Props = { /** * Elements passed into the SVG Icon. */ children: typeof babelPluginFlowReactPropTypes_proptype_Node === 'function' ? babelPluginFlowReactPropTypes_proptype_Node.isRequired ? babelPluginFlowReactPropTypes_proptype_Node.isRequired : babelPluginFlowReactPropTypes_proptype_Node : require('prop-types').shape(babelPluginFlowReactPropTypes_proptype_Node).isRequired, /** * Useful to extend the style applied to components. */ classes: require('prop-types').object, /** * @ignore */ className: require('prop-types').string, /** * Provides a human-readable title for the element that contains it. * https://www.w3.org/TR/SVG-access/#Equivalent */ titleAccess: require('prop-types').string, /** * Allows you to redefine what the coordinates without units mean inside an svg element. * For example, if the SVG element is 500 (width) by 200 (height), * and you pass viewBox="0 0 50 20", * this means that the coordinates inside the svg will go from the top left corner (0,0) * to bottom right (50,20) and each unit will be worth 10px. */ viewBox: require('prop-types').string.isRequired }; var SvgIcon = function (_React$Component) { (0, _inherits3.default)(SvgIcon, _React$Component); function SvgIcon() { (0, _classCallCheck3.default)(this, SvgIcon); return (0, _possibleConstructorReturn3.default)(this, (SvgIcon.__proto__ || (0, _getPrototypeOf2.default)(SvgIcon)).apply(this, arguments)); } (0, _createClass3.default)(SvgIcon, [{ key: 'render', value: function render() { var _props = this.props, children = _props.children, classes = _props.classes, className = _props.className, titleAccess = _props.titleAccess, viewBox = _props.viewBox, other = (0, _objectWithoutProperties3.default)(_props, ['children', 'classes', 'className', 'titleAccess', 'viewBox']); return _react2.default.createElement( 'svg', (0, _extends3.default)({ className: (0, _classnames2.default)(classes.root, className), focusable: 'false', viewBox: viewBox, 'aria-hidden': titleAccess ? 'false' : 'true' }, other), titleAccess ? _react2.default.createElement( 'title', null, titleAccess ) : null, children ); } }]); return SvgIcon; }(_react2.default.Component); SvgIcon.defaultProps = { viewBox: '0 0 24 24' }; SvgIcon.muiName = 'SvgIcon'; exports.default = (0, _withStyles2.default)(styles, { name: 'MuiSvgIcon' })(SvgIcon);