Skip to content

Commit

Permalink
sebastian review
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Mar 28, 2020
1 parent dce63d8 commit f1fb94d
Show file tree
Hide file tree
Showing 22 changed files with 18 additions and 22 deletions.
2 changes: 0 additions & 2 deletions packages/material-ui-icons/src/utils/createSvgIcon.d.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/material-ui-icons/src/utils/createSvgIcon.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default } from '@material-ui/core/createSvgIcon';
export { createSvgIcon as default } from '@material-ui/core/utils';
2 changes: 0 additions & 2 deletions packages/material-ui/src/createSvgIcon/index.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion packages/material-ui/src/createSvgIcon/index.js

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/internal/svg-icons/Cancel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/internal/svg-icons/CheckBox.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/internal/svg-icons/CheckCircle.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/internal/svg-icons/Close.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/internal/svg-icons/MoreHoriz.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/internal/svg-icons/Person.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/internal/svg-icons/Warning.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import createSvgIcon from '../../createSvgIcon';
import createSvgIcon from '../../utils/createSvgIcon';

/**
* @ignore - internal component.
Expand Down
3 changes: 2 additions & 1 deletion packages/material-ui/src/utils/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
export { default as capitalize } from './capitalize';
export { default as deprecatedPropType } from './deprecatedPropType';
export { default as isMuiElement } from './isMuiElement';
export { default as createSvgIcon } from './createSvgIcon';
export { default as ownerDocument } from './ownerDocument';
export { default as ownerWindow } from './ownerWindow';
export { default as requirePropFactory } from './requirePropFactory';
export { default as setRef } from './setRef';
export { default as unsupportedProp } from './unsupportedProp';
export { default as useControlled } from './useControlled';
export { default as useEventCallback } from './useEventCallback';
export { default as useForkRef } from './useForkRef';
export { default as useControlled } from './useControlled';
export { useIsFocusVisible } from './focusVisible';

0 comments on commit f1fb94d

Please sign in to comment.