Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Commit

Permalink
feat: modified icons noissue
Browse files Browse the repository at this point in the history
  • Loading branch information
cboyce183 committed Mar 24, 2022
1 parent 1830e32 commit f8ff619
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
1 change: 0 additions & 1 deletion src/icons/AssetActivity.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React, {forwardRef} from 'react';

import Svg from './BaseSvg';

import { SVGRProps } from './util';

const AssetActivityIcon = forwardRef<SVGSVGElement, SVGRProps>((props, ref) => {
Expand Down
3 changes: 1 addition & 2 deletions src/icons/AssetAudio.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import React, {forwardRef} from 'react';

import Svg from './BaseSvg'
import Svg from './BaseSvg';
import { SVGRProps } from './util';


const AssetAudioIcon = forwardRef<SVGSVGElement, SVGRProps>((props, ref) => {
const {size, color, ...otherProps} = props;

Expand Down
8 changes: 4 additions & 4 deletions src/icons/Forbidden.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React, {forwardRef} from 'react';
import Svg from './BaseSvg';
import { SVGRProps } from './util';

const GandalfIcon = forwardRef<SVGSVGElement, SVGRProps>((props, ref) => {
const ForbiddenIcon = forwardRef<SVGSVGElement, SVGRProps>((props, ref) => {
const {size, color, ...otherProps} = props;

// Unless the icon has an explicit ARIA label, we'll hide it visually
Expand All @@ -29,11 +29,11 @@ const GandalfIcon = forwardRef<SVGSVGElement, SVGRProps>((props, ref) => {
);
});

GandalfIcon.displayName = 'GandalfIcon';
ForbiddenIcon.displayName = 'ForbiddenIcon';

GandalfIcon.defaultProps = {
ForbiddenIcon.defaultProps = {
size: 18,
color: 'currentcolor',
};

export default GandalfIcon;
export default ForbiddenIcon;
8 changes: 4 additions & 4 deletions src/icons/Topic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React, {forwardRef} from 'react';
import Svg from './BaseSvg';
import { SVGRProps } from './util';

const CollectionIcon = forwardRef<SVGSVGElement, SVGRProps>((props, ref) => {
const TopicIcon = forwardRef<SVGSVGElement, SVGRProps>((props, ref) => {
const {size, color, ...otherProps} = props;

// Unless the icon has an explicit ARIA label, we'll hide it visually
Expand All @@ -29,11 +29,11 @@ const CollectionIcon = forwardRef<SVGSVGElement, SVGRProps>((props, ref) => {
);
});

CollectionIcon.displayName = 'CollectionIcon';
TopicIcon.displayName = 'TopicIcon';

CollectionIcon.defaultProps = {
TopicIcon.defaultProps = {
size: 18,
color: 'currentcolor',
};

export default CollectionIcon;
export default TopicIcon;

0 comments on commit f8ff619

Please sign in to comment.