Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
cgero-eth committed Jul 25, 2023
1 parent 79f66b6 commit cde02c4
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
9 changes: 8 additions & 1 deletion src/components/icons/interface/icon_copy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ import { type IconType } from '..';

export const IconCopy: IconType = ({ height = 16, width = 16, ...props }) => {
return (
<svg width={width} height={height} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<svg
width={width}
height={height}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g clipPath="url(#clip0_8874_15279)">
<path
d="M8.93336 3.15335C8.92944 3.19376 8.94103 3.23416 8.96579 3.26635C8.99055 3.29853 9.02662 3.3201 9.06669 3.32668C9.2292 3.36801 9.37241 3.46428 9.47205 3.59915C9.57168 3.73402 9.62161 3.8992 9.61336 4.06668V5.00001C9.61335 5.10914 9.63495 5.21718 9.67691 5.31791C9.71887 5.41864 9.78036 5.51007 9.85783 5.58692C9.9353 5.66378 10.0272 5.72453 10.1283 5.76568C10.2294 5.80683 10.3376 5.82756 10.4467 5.82668C10.5555 5.82757 10.6634 5.80679 10.7641 5.76556C10.8648 5.72433 10.9563 5.66348 11.0332 5.58653C11.1102 5.50959 11.171 5.41811 11.2122 5.31741C11.2535 5.21672 11.2742 5.10882 11.2734 5.00001V2.66668C11.2734 2.40261 11.1689 2.14926 10.9828 1.96192C10.7967 1.77457 10.5441 1.66844 10.28 1.66668H9.12669C9.08253 1.66807 9.04018 1.68454 9.00669 1.71335C8.9763 1.74587 8.95959 1.78884 8.96002 1.83335C8.96002 2.13335 8.96002 2.81335 8.93336 3.15335Z"
Expand Down
9 changes: 8 additions & 1 deletion src/components/icons/interface/icon_explore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ import { type IconType } from '..';

export const IconExplore: IconType = ({ height = 16, width = 16, ...props }) => {
return (
<svg width={width} height={height} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<svg
width={width}
height={height}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g clipPath="url(#clip0_8874_15270)">
<path
d="M9.16659 7.99998C9.16659 8.64431 8.64425 9.16665 7.99992 9.16665C7.35559 9.16665 6.83325 8.64431 6.83325 7.99998C6.83325 7.35565 7.35559 6.83331 7.99992 6.83331C8.64425 6.83331 9.16659 7.35565 9.16659 7.99998Z"
Expand Down
9 changes: 8 additions & 1 deletion src/components/icons/interface/icon_shrink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ import { type IconType } from '..';

export const IconShrink: IconType = ({ height = 16, width = 16, ...props }) => {
return (
<svg width={width} height={height} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<svg
width={width}
height={height}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g clipPath="url(#clip0_8874_15278)">
<path
fillRule="evenodd"
Expand Down
6 changes: 3 additions & 3 deletions src/components/icons/interface/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ export { IconCopy } from './icon_copy';
export { IconDeposit } from './icon_deposit';
export { IconExpand } from './icon_expand';
export { IconExplore } from './icon_explore';
export { IconFilter } from './icon_filter';
export { IconFailure } from './icon_failure';
export { IconFavoriteDefault } from './icon_favorite_default';
export { IconFavoriteSelected } from './icon_favorite_selected';
export { IconFeedback } from './icon_feedback';
export { IconFilter } from './icon_filter';
export { IconFlag } from './icon_flag';
export { IconHome } from './icon_home';
export { IconInfo } from './icon_info';
Expand All @@ -29,14 +29,14 @@ export { IconMenuVertical } from './icon_menu_vertical';
export { IconPerson } from './icon_person';
export { IconQuestion } from './icon_question';
export { IconRadioDefault } from './icon_radio_default';
export { IconRadioPause } from './icon_radio_pause';
export { IconRadioMulti } from './icon_radio_multi';
export { IconRadioPause } from './icon_radio_pause';
export { IconRadioSelected } from './icon_radio_selected';
export { IconReload } from './icon_reload';
export { IconRemove } from './icon_remove';
export { IconSearch } from './icon_search';
export { IconShrink } from './icon_shrink';
export { IconSettings } from './icon_settings';
export { IconShrink } from './icon_shrink';
export { IconSmartContract } from './icon_smart_contract';
export { IconSpinner } from './icon_spinner';
export { IconStorage } from './icon_storage';
Expand Down

0 comments on commit cde02c4

Please sign in to comment.