Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/icons/AppRegistration/AppRegistrationIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
import { IconProps } from '../types';

export const AppRegistrationIcon = ({
width = DEFAULT_WIDTH,
height = DEFAULT_HEIGHT,
fill = DEFAULT_FILL_NONE,
...props
}: IconProps): JSX.Element => {
return (
<svg
aria-hidden="true"
viewBox="0 0 24 24"
data-testid="AppRegistrationIcon"
fill={fill}
width={width}
height={height}
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path d="M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm10 8.42V10h-4v4h2.42zm6.88-1.13-1.17-1.17c-.16-.16-.42-.16-.58 0l-.88.88L20 12.75l.88-.88c.16-.16.16-.42 0-.58M11 18.25V20h1.75l6.67-6.67-1.75-1.75zM16 4h4v4h-4z"></path>
</svg>
);
};

export default AppRegistrationIcon;
1 change: 1 addition & 0 deletions src/icons/AppRegistration/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AppRegistrationIcon } from './AppRegistrationIcon';
17 changes: 9 additions & 8 deletions src/icons/index.ts
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aprv10, so many changes have been made to this file. Please revert and only add the relevant changes.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Most of the changes are from the linting fixes applied during the build process. The lines were mainly reformatted/moved around, so there’s effectively no functional change in that file apart from the export I added.

I’ll keep this in mind going forward and avoid including unrelated formatting changes.

Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
export * from './Academy';
export * from './AccessTime';
export * from './AccessTimeFilled';
export * from './AddCircle';
export * from './Add';
export * from './AddCircle';
export * from './Alert';
export * from './Application';
export * from './AppRegistration'
export * from './ArrowBack';
export * from './ArrowCompress';
export * from "./ArrowDownward";
export * from './ArrowDownward';
export * from './ArrowDropDown';
export * from './ArrowExpand';
export * from './ArrowUpward';
Expand All @@ -28,9 +29,9 @@ export * from './CategoryIcon';
export * from './Chain';
export * from './Challenges';
export * from './Chat';
export * from './Check';
export * from './CheckCircle';
export * from './CheckCircleOutline';
export * from './Check';
export * from './Chevron';
export * from './ChevronLeft';
export * from './ChevronRight';
Expand Down Expand Up @@ -58,8 +59,8 @@ export * from './Delete';
export * from './Deploy';
export * from './Deployments';
export * from './Description';
export * from './Designer';
export * from './Design';
export * from './Designer';
export * from './Detail';
export * from './DirectionsCar';
export * from './DiscussForum';
Expand All @@ -83,8 +84,8 @@ export * from './Export';
export * from './ExternalLink';
export * from './Favorite';
export * from './Feedback';
export * from './FileCopy';
export * from './File';
export * from './FileCopy';
export * from './FileUpload';
export { default as FilledCircleIcon } from './FilledCircleIcon';
export * from './Filter';
Expand All @@ -96,8 +97,8 @@ export * from './Github';
export * from './Google';
export * from './GridOn';
export * from './GridView';
export * from './GroupAdd';
export * from './Group';
export * from './GroupAdd';
export * from './HelpIcon';
export * from './Hierarchical';
export * from './Idea';
Expand All @@ -114,17 +115,17 @@ export * from './Learning';
export * from './LeftAngledArrow';
export * from './LeftArrow';
export * from './ListAlt';
export * from './LockClockOutlinedIcon';
export * from './Lock';
export * from './LockClockOutlinedIcon';
export * from './Logout';
export * from './Mendeley';
export * from './Menu';
export { default as MergeActionIcon } from './MergeActionIcon';
export * from './MergeOutlined';
export * from './Mesh';
export * from './Meshery';
export * from './MesheryFilter';
export * from './MesheryOperator';
export * from './Mesh';
export { default as ModifiedApplicationFileIcon } from './ModifiedApplicationFileIcon';
export * from './MoreHoriz';
export * from './MoreVert';
Expand Down
Loading