Skip to content

Commit

Permalink
Merge pull request #320 from layer5io/319-fix-paths
Browse files Browse the repository at this point in the history
fix(svg): fix relative paths
  • Loading branch information
nebula-aac authored Nov 12, 2023
2 parents 136bd7d + b3815c4 commit 5fe8dae
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/svg/src/icons/Close/CloseIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from 'src/constants/constants';
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
import { IconProps } from '../types';

export const CloseIcon = ({
Expand Down
2 changes: 1 addition & 1 deletion packages/svg/src/icons/Delete/DeleteIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from 'src/constants/constants';
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
import { IconProps } from '../types';

export const DeleteIcon = ({
Expand Down
2 changes: 1 addition & 1 deletion packages/svg/src/icons/Favorite/FavoriteIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from 'src/constants/constants';
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
import { IconProps } from '../types';

export const FavoriteIcon = ({
Expand Down
2 changes: 1 addition & 1 deletion packages/svg/src/icons/Filter/FilterIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from 'src/constants/constants';
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
import { IconProps } from '../types';

export const FilterIcon = ({
Expand Down
2 changes: 1 addition & 1 deletion packages/svg/src/icons/Save/SaveAsIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from 'src/constants/constants';
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
import { IconProps } from '../types';

export const SaveAsIcon = ({
Expand Down

0 comments on commit 5fe8dae

Please sign in to comment.