Skip to content

Commit

Permalink
[material-ui-icons] Prepare new release (mui#7229)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Jun 23, 2017
1 parent 4d52dac commit 4eb43e2
Show file tree
Hide file tree
Showing 972 changed files with 3,042 additions and 3,912 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ node_modules
/flow-typed/
/packages/*/lib/
/packages/material-ui-icons/build/
/packages/material-ui-icons/test/fixtures/
/packages/material-ui-icons/src/
/packages/material-ui-icons/tpl/
/packages/material-ui-codemod/modules/v0.15.0/
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"build:umd:prod": "cross-env NODE_ENV=production webpack --config scripts/umd.webpack.config.js",
"build:docs": "babel-node ./scripts/build-api-docs.js",
"prettier": "find . -name \"*.js\" | grep -v -f .eslintignore | xargs prettier --write --single-quote --trailing-comma all --print-width 100",
"clean": "npm run clean:build",
"clean:docs": "rimraf docs/api/*",
"clean:build": "rimraf build",
"lint": "eslint . --cache && echo \"eslint: no lint errors\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eslint-plugin-material-ui",
"version": "1.0.0",
"private": "true",
"private": true,
"description": "Custom eslint rules for Material-UI",
"repository": "https://github.com/callemall/material-ui/packages/eslint-plugin-material-ui",
"main": "lib/index.js",
Expand Down
5 changes: 3 additions & 2 deletions packages/material-ui-icons/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ function getJsxString(svgPath, destPath, options) {
paths = paths.replace(/xlink:href="#c"/g, '');
paths = paths.replace(/fill-opacity=/g, 'fillOpacity=');
paths = paths.replace(/\s?fill=".*?"/g, '');
paths = paths.replace(/"\/>/g, '" />');

// Node acts weird if we put this directly into string concatenation
const muiRequireStmt = options.muiRequire === 'relative'
Expand Down Expand Up @@ -146,7 +147,7 @@ function main(options, callback) {
let originalWrite; // todo, add wiston / other logging tool

options = _.defaults(options, DEFAULT_OPTIONS);
if (options.disable_log) {
if (options.disableLog) {
// disable console.log opt, used for tests.
originalWrite = process.stdout.write;
process.stdout.write = () => {};
Expand Down Expand Up @@ -182,7 +183,7 @@ function main(options, callback) {

processIndex(options);

if (options.disable_log) {
if (options.disableLog) {
// bring back stdout
process.stdout.write = originalWrite;
}
Expand Down
12 changes: 4 additions & 8 deletions packages/material-ui-icons/copy-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ function createPackageFile() {
license,
bugs,
homepage,
peerDependencies,
dependencies,
} = packageData;

const minimalPackage = {
Expand All @@ -50,14 +52,8 @@ function createPackageFile() {
license,
bugs,
homepage,
dependencies: {
recompose: '^0.22.0',
},
peerDependencies: {
react: '^15.0.0',
'react-dom': '^15.0.0',
'material-ui': '^1.0.0-alpha',
},
peerDependencies,
dependencies,
};

return new Promise(resolve => {
Expand Down
4 changes: 2 additions & 2 deletions packages/material-ui-icons/filters/rename/default.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @flow weak
// @flow

import path from 'path';

Expand All @@ -17,7 +17,7 @@ import path from 'path';
* @param {object} options
* @return {string} output file dest relative to outputDir
*/
function defaultDestRewriter(pathObj, innerPath, options) {
function defaultDestRewriter(pathObj: Object, innerPath: string, options: Object) {
let fileName = pathObj.base;
if (options.fileSuffix) {
fileName.replace(options.fileSuffix, '.svg');
Expand Down
4 changes: 2 additions & 2 deletions packages/material-ui-icons/filters/rename/kebab-case.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @flow weak
// @flow

import path from 'path';

Expand All @@ -17,7 +17,7 @@ import path from 'path';
* @param {object} options
* @return {string} output file dest relative to outputDir
*/
function kebabDestRewriter(pathObj, innerPath, options) {
function kebabDestRewriter(pathObj: Object, innerPath: string, options: Object) {
let fileName = pathObj.base;
if (options.fileSuffix) {
fileName.replace(options.fileSuffix, '.svg');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// @flow weak
function myDestRewriter(pathObj) {
// @flow

function myDestRewriter(pathObj: Object) {
let fileName = pathObj.base;

fileName = fileName
Expand Down
10 changes: 9 additions & 1 deletion packages/material-ui-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"private": "true",
"private": true,
"name": "material-ui-icons-builder",
"version": "1.0.0-alpha.3",
"description": "Material Design Svg Icons converted to Material-UI React components.",
Expand Down Expand Up @@ -32,6 +32,14 @@
"test": "mocha",
"test:watch": "mocha -w"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0-alpha.13",
"react-dom": "^15.3.0 || ^16.0.0-alpha.13",
"material-ui": "^1.0.0-alpha"
},
"dependencies": {
"recompose": "^0.23.5"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"chai": "^3.0.0",
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AcUnit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AcUnit = (props) => (
let AcUnit = props =>
<SvgIcon {...props}>
<path d="M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z"/>
</SvgIcon>
);
<path d="M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z" />
</SvgIcon>;

AcUnit = pure(AcUnit);
AcUnit.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AccessAlarm.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AccessAlarm = (props) => (
let AccessAlarm = props =>
<SvgIcon {...props}>
<path d="M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/>
</SvgIcon>
);
<path d="M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" />
</SvgIcon>;

AccessAlarm = pure(AccessAlarm);
AccessAlarm.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AccessAlarms.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AccessAlarms = (props) => (
let AccessAlarms = props =>
<SvgIcon {...props}>
<path d="M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z"/>
</SvgIcon>
);
<path d="M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" />
</SvgIcon>;

AccessAlarms = pure(AccessAlarms);
AccessAlarms.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AccessTime.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AccessTime = (props) => (
let AccessTime = props =>
<SvgIcon {...props}>
<path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/>
</SvgIcon>
);
<path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" />
</SvgIcon>;

AccessTime = pure(AccessTime);
AccessTime.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/Accessibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let Accessibility = (props) => (
let Accessibility = props =>
<SvgIcon {...props}>
<path d="M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z"/>
</SvgIcon>
);
<path d="M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" />
</SvgIcon>;

Accessibility = pure(Accessibility);
Accessibility.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/Accessible.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let Accessible = (props) => (
let Accessible = props =>
<SvgIcon {...props}>
<circle cx="12" cy="4" r="2"/><path d="M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z"/>
</SvgIcon>
);
<circle cx="12" cy="4" r="2" /><path d="M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" />
</SvgIcon>;

Accessible = pure(Accessible);
Accessible.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AccountBalance.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AccountBalance = (props) => (
let AccountBalance = props =>
<SvgIcon {...props}>
<path d="M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z"/>
</SvgIcon>
);
<path d="M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z" />
</SvgIcon>;

AccountBalance = pure(AccountBalance);
AccountBalance.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AccountBalanceWallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AccountBalanceWallet = (props) => (
let AccountBalanceWallet = props =>
<SvgIcon {...props}>
<path d="M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/>
</SvgIcon>
);
<path d="M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" />
</SvgIcon>;

AccountBalanceWallet = pure(AccountBalanceWallet);
AccountBalanceWallet.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AccountBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AccountBox = (props) => (
let AccountBox = props =>
<SvgIcon {...props}>
<path d="M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z"/>
</SvgIcon>
);
<path d="M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" />
</SvgIcon>;

AccountBox = pure(AccountBox);
AccountBox.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AccountCircle.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AccountCircle = (props) => (
let AccountCircle = props =>
<SvgIcon {...props}>
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/>
</SvgIcon>
);
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" />
</SvgIcon>;

AccountCircle = pure(AccountCircle);
AccountCircle.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/Adb.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let Adb = (props) => (
let Adb = props =>
<SvgIcon {...props}>
<path d="M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/>
</SvgIcon>
);
<path d="M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" />
</SvgIcon>;

Adb = pure(Adb);
Adb.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/Add.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let Add = (props) => (
let Add = props =>
<SvgIcon {...props}>
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
</SvgIcon>
);
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
</SvgIcon>;

Add = pure(Add);
Add.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AddAPhoto.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AddAPhoto = (props) => (
let AddAPhoto = props =>
<SvgIcon {...props}>
<path d="M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H21c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3.2-5c0 1.77 1.43 3.2 3.2 3.2s3.2-1.43 3.2-3.2-1.43-3.2-3.2-3.2-3.2 1.43-3.2 3.2z"/>
</SvgIcon>
);
<path d="M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H21c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3.2-5c0 1.77 1.43 3.2 3.2 3.2s3.2-1.43 3.2-3.2-1.43-3.2-3.2-3.2-3.2 1.43-3.2 3.2z" />
</SvgIcon>;

AddAPhoto = pure(AddAPhoto);
AddAPhoto.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AddAlarm.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AddAlarm = (props) => (
let AddAlarm = props =>
<SvgIcon {...props}>
<path d="M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"/>
</SvgIcon>
);
<path d="M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" />
</SvgIcon>;

AddAlarm = pure(AddAlarm);
AddAlarm.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AddAlert.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AddAlert = (props) => (
let AddAlert = props =>
<SvgIcon {...props}>
<path d="M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72C7.37 5.03 5.12 7.75 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z"/>
</SvgIcon>
);
<path d="M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72C7.37 5.03 5.12 7.75 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z" />
</SvgIcon>;

AddAlert = pure(AddAlert);
AddAlert.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AddBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AddBox = (props) => (
let AddBox = props =>
<SvgIcon {...props}>
<path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"/>
</SvgIcon>
);
<path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" />
</SvgIcon>;

AddBox = pure(AddBox);
AddBox.muiName = 'SvgIcon';
Expand Down
7 changes: 3 additions & 4 deletions packages/material-ui-icons/src/AddCircle.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from 'material-ui/SvgIcon';

let AddCircle = (props) => (
let AddCircle = props =>
<SvgIcon {...props}>
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"/>
</SvgIcon>
);
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" />
</SvgIcon>;

AddCircle = pure(AddCircle);
AddCircle.muiName = 'SvgIcon';
Expand Down
Loading

0 comments on commit 4eb43e2

Please sign in to comment.