Skip to content

Commit

Permalink
fix: 🐛 redesign SiteIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
Egor Glushanko committed Feb 17, 2023
1 parent 56e466e commit 3336862
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/icons/employees/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ export { default as NotIndicatedIcon } from './not-indicated';
export { default as PhonesIcon } from './phones';
export { default as ProfessionalIcon } from './professional';
export { default as ProhibitedIcon } from './prohibited';
export { default as SiteIcon } from './site';
export { default as WorkerIcon } from './worker';
1 change: 1 addition & 0 deletions src/icons/redesign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ export { default as TelegramIcon } from './socials/telegram';
export { default as TelegramWhiteIcon } from './socials/telegram-white';
export { default as ViberIcon } from './socials/viber';
export { default as WhatsappIcon } from './socials/whatsapp';
export { default as SiteIcon } from './socials/site';
1 change: 1 addition & 0 deletions src/icons/socials/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export { default as InstagramNoFillIcon } from './instagram-no-fill';
export { default as InstagramIcon } from './instagram';
export { default as LinkIcon } from './link';
export { default as OkIcon } from './ok';
export { default as SiteIcon } from './site';
export { default as TelegramIcon } from './telegram';
export { default as TelegramWhiteIcon } from './telegram-white';
export { default as TwitterIcon } from './twitter';
Expand Down
1 change: 1 addition & 0 deletions src/icons/socials/site.optimized.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions src/icons/socials/site.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import * as React from 'react';
import type { IconProps } from '../../core';
import { castIconProps } from '../../core';

const WebSite = (property: IconProps): ReturnType<React.FC> => {
const props = castIconProps(property);

return (
<svg viewBox="0 0 22 22" {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M6.458 8.266c.2 0 .354.18.328.379-.107.792-.161 1.572-.161 2.355 0 .783.054 1.563.16 2.355a.333.333 0 0 1-.327.38H2.923a.32.32 0 0 1-.308-.227A8.751 8.751 0 0 1 2.25 11c0-.871.127-1.713.365-2.508a.32.32 0 0 1 .308-.226h3.535ZM3.374 6.707a.313.313 0 0 0 .28.465h3.122a.331.331 0 0 0 .322-.26A28.78 28.78 0 0 1 8.2 3.262c.095-.257-.143-.51-.398-.41a8.782 8.782 0 0 0-4.428 3.855Zm6.543-4.39a.32.32 0 0 0-.257.199c-.617 1.538-1.084 2.936-1.406 4.257a.323.323 0 0 0 .317.399h4.858c.21 0 .367-.195.317-.399-.322-1.321-.789-2.719-1.406-4.257a.32.32 0 0 0-.257-.2 8.839 8.839 0 0 0-2.166 0Zm4.281.536c-.255-.1-.493.152-.398.41.473 1.282.84 2.486 1.102 3.65.034.15.167.259.322.259h3.122c.242 0 .4-.254.28-.465a8.781 8.781 0 0 0-4.428-3.854Zm5.187 5.64a.32.32 0 0 0-.308-.227h-3.535a.333.333 0 0 0-.328.379c.107.792.161 1.572.161 2.355 0 .783-.054 1.563-.16 2.355-.027.2.126.38.328.38h3.534a.32.32 0 0 0 .308-.227A8.749 8.749 0 0 0 19.75 11c0-.871-.127-1.713-.365-2.508Zm-.759 6.8a.313.313 0 0 0-.28-.465h-3.122a.331.331 0 0 0-.322.26 28.793 28.793 0 0 1-1.102 3.65c-.095.257.143.51.398.41a8.782 8.782 0 0 0 4.428-3.855Zm-6.543 4.39a.32.32 0 0 0 .257-.199c.617-1.538 1.084-2.936 1.406-4.257a.323.323 0 0 0-.317-.399H8.571a.323.323 0 0 0-.317.399c.322 1.321.789 2.72 1.406 4.257a.32.32 0 0 0 .257.2 8.839 8.839 0 0 0 2.166 0Zm-4.281-.536c.255.1.493-.152.398-.41a28.783 28.783 0 0 1-1.102-3.649.331.331 0 0 0-.322-.26H3.655c-.243 0-.4.254-.281.465a8.782 8.782 0 0 0 4.428 3.854ZM14.282 11c0 .812-.063 1.625-.187 2.46a.324.324 0 0 1-.322.274H8.227a.324.324 0 0 1-.322-.275A16.58 16.58 0 0 1 7.719 11c0-.812.061-1.625.186-2.46a.324.324 0 0 1 .322-.274h5.546c.161 0 .298.116.322.275.124.834.186 1.647.186 2.46Z"
/>
</svg>
);
};

WebSite.defaultProps = {
height: 22,
width: 22,
};
export default WebSite;

0 comments on commit 3336862

Please sign in to comment.