Skip to content

Commit

Permalink
Merge pull request #76 from Giveth/fix-build-issues
Browse files Browse the repository at this point in the history
Fix build issues
  • Loading branch information
alireza-sharifpour authored Nov 7, 2022
2 parents eff5f25 + c6ce3c2 commit 34b763b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 79 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giveth/ui-design-system",
"version": "1.9.0",
"version": "1.9.1",
"files": [
"/lib"
],
Expand Down
4 changes: 2 additions & 2 deletions src/components/icons/BulbOff/BulbOff16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export const IconBulbOff16: FC<IIconProps> = ({
color = 'currentColor',
}) => (
<svg
width='15'
height='15'
width={size}
height={size}
viewBox='0 0 15 15'
fill='none'
xmlns='http://www.w3.org/2000/svg'
Expand Down
4 changes: 2 additions & 2 deletions src/components/icons/BulbOutline/BulbOutline16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export const IconBulbOutline16: FC<IIconProps> = ({
color = 'currentColor',
}) => (
<svg
width='15'
height='15'
width={size}
height={size}
viewBox='0 0 15 15'
fill='none'
xmlns='http://www.w3.org/2000/svg'
Expand Down
3 changes: 0 additions & 3 deletions src/components/icons/Fund/Fund.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { FC } from 'react';
import { IIconProps } from '../type';
import { IconFund16 } from './Fund16';
import { IconFund24 } from './Fund24';
import { IconFund32 } from './Fund32';

Expand All @@ -9,8 +8,6 @@ export const IconFund: FC<IIconProps> = ({
color = 'currentColor',
}) => {
switch (size.toString()) {
case '16':
return <IconFund16 color={color} />;
case '24':
return <IconFund24 color={color} />;
case '32':
Expand Down
68 changes: 0 additions & 68 deletions src/components/icons/Network.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions src/components/icons/Network/Network.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { FC } from 'react';
import { IIconProps } from '../type';
import { IconNetwork16 } from './Network16';
import { IconNetwork24 } from './Network24';
import { IconNetwork32 } from './Network32';

Expand All @@ -9,8 +8,6 @@ export const IconNetwork: FC<IIconProps> = ({
color = 'currentColor',
}) => {
switch (size.toString()) {
case '16':
return <IconNetwork16 color={color} />;
case '24':
return <IconNetwork24 color={color} />;
case '32':
Expand Down

0 comments on commit 34b763b

Please sign in to comment.