Skip to content

Commit

Permalink
S-67412 temp commit icons for build
Browse files Browse the repository at this point in the history
Still need to determine a way to handle them without commiting them to src like this; plus they wont actually show at the moment because there is no SVG bundle.
  • Loading branch information
andrew-codes committed Feb 7, 2019
1 parent b2b70c9 commit 91e7ea9
Show file tree
Hide file tree
Showing 265 changed files with 6,956 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ packages/components/src/index.js

# Components must live within their own directory. There should not be any loose files in the source directory.
packages/components/src/*.*
packages/components/src/Icons

# Temporarily remove below line until icons can be fixed
# packages/components/src/Icons
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Activity.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class ActivityIcon extends IconBase {
render() {
return <IconBase iconId="activity" {...this.props} />;
}
}
ActivityIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
ActivityIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default ActivityIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Add.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AddIcon extends IconBase {
render() {
return <IconBase iconId="add" {...this.props} />;
}
}
AddIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AddIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AddIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/AddIcon.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AddIconIcon extends IconBase {
render() {
return <IconBase iconId="add-icon" {...this.props} />;
}
}
AddIconIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AddIconIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AddIconIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/AddNew.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AddNewIcon extends IconBase {
render() {
return <IconBase iconId="add-new" {...this.props} />;
}
}
AddNewIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AddNewIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AddNewIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Admin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AdminIcon extends IconBase {
render() {
return <IconBase iconId="admin" {...this.props} />;
}
}
AdminIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AdminIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AdminIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Agility.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AgilityIcon extends IconBase {
render() {
return <IconBase iconId="agility" {...this.props} />;
}
}
AgilityIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AgilityIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AgilityIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Airplane.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AirplaneIcon extends IconBase {
render() {
return <IconBase iconId="airplane" {...this.props} />;
}
}
AirplaneIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AirplaneIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AirplaneIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Alert.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AlertIcon extends IconBase {
render() {
return <IconBase iconId="alert" {...this.props} />;
}
}
AlertIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AlertIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AlertIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/AlertBubble.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AlertBubbleIcon extends IconBase {
render() {
return <IconBase iconId="alert-bubble" {...this.props} />;
}
}
AlertBubbleIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AlertBubbleIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AlertBubbleIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/AlphabetIcon.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AlphabetIconIcon extends IconBase {
render() {
return <IconBase iconId="alphabet-icon" {...this.props} />;
}
}
AlphabetIconIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AlphabetIconIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AlphabetIconIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Analytics.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AnalyticsIcon extends IconBase {
render() {
return <IconBase iconId="analytics" {...this.props} />;
}
}
AnalyticsIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AnalyticsIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AnalyticsIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/ArrowRight.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class ArrowRightIcon extends IconBase {
render() {
return <IconBase iconId="arrow-right" {...this.props} />;
}
}
ArrowRightIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
ArrowRightIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default ArrowRightIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Artifact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class ArtifactIcon extends IconBase {
render() {
return <IconBase iconId="artifact" {...this.props} />;
}
}
ArtifactIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
ArtifactIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default ArtifactIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/Asset.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AssetIcon extends IconBase {
render() {
return <IconBase iconId="asset" {...this.props} />;
}
}
AssetIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AssetIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AssetIcon;
25 changes: 25 additions & 0 deletions packages/components/src/Icons/AssignToUser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is a generated file; do not edit manually.
import React from 'react';
import PropTypes from 'prop-types';
import IconBase from './IconBase';

class AssignToUserIcon extends IconBase {
render() {
return <IconBase iconId="assign-to-user" {...this.props} />;
}
}
AssignToUserIcon.propTypes = {
/**
* Color of the icon.
*/
color: PropTypes.string,
/**
* Value of the width and height of the icon. Icons are always square.
*/
size: PropTypes.number,
};
AssignToUserIcon.defaultProps = {
color: 'currentColor',
size: 16,
};
export default AssignToUserIcon;
Loading

0 comments on commit 91e7ea9

Please sign in to comment.