Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: sync icons #67

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/FaceRobot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const FaceRobot = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M15.5 10.071c0-2.582-1.426-4.853-3.633-6.087l1.039-1.87a.75.75 0 1 0-1.312-.728l-1.11 1.997A8.1 8.1 0 0 0 8 3a8.1 8.1 0 0 0-2.485.383l-1.11-1.997a.75.75 0 1 0-1.31.728l1.038 1.87C1.926 5.218.5 7.489.5 10.07c0 .813.169 1.603.614 2.294.448.697 1.09 1.158 1.795 1.46C4.227 14.39 6.02 14.5 8 14.5s3.773-.11 5.09-.675c.707-.302 1.348-.763 1.796-1.46.446-.691.614-1.481.614-2.294m-13.5 0C2 12.5 4 13 8 13s6-.5 6-2.929c0-3-2.5-5.571-6-5.571s-6 2.57-6 5.57m8.5 1.179a.75.75 0 0 1-.75-.75V9a.75.75 0 0 1 1.5 0v1.5a.75.75 0 0 1-.75.75m-5.75-.75a.75.75 0 0 0 1.5 0V9a.75.75 0 0 0-1.5 0z"
d="M8.75.75a.75.75 0 0 0-1.5 0V2H5a3 3 0 0 0-3 3A2.19 2.19 0 0 0 .5 7.081V9.42c0 .944.604 1.782 1.5 2.081a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3 2.19 2.19 0 0 0 1.5-2.081V7.08c0-.943-.604-1.78-1.5-2.08a3 3 0 0 0-3-3H8.75zM3.5 10.419V11.5A1.5 1.5 0 0 0 5 13h6a1.5 1.5 0 0 0 1.5-1.5v-1.081l1.026-.342A.69.69 0 0 0 14 9.419V7.08a.69.69 0 0 0-.474-.658L12.5 6.081V5A1.5 1.5 0 0 0 11 3.5H5A1.5 1.5 0 0 0 3.5 5v1.081l-1.026.342A.69.69 0 0 0 2 7.081V9.42c0 .298.191.564.474.658zM9.75 8A.75.75 0 0 1 9 7.25v-1a.75.75 0 0 1 1.5 0v1a.75.75 0 0 1-.75.75m.75 2.25a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1 0-1.5h3.5a.75.75 0 0 1 .75.75m-5-3a.75.75 0 0 0 1.5 0v-1a.75.75 0 0 0-1.5 0z"
clipRule="evenodd"
/>
</svg>
Expand Down
20 changes: 20 additions & 0 deletions lib/LogoAndroid.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import type {SVGProps} from 'react';
const LogoAndroid = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={16}
height={16}
fill="none"
viewBox="0 0 16 16"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
d="M15.48 9.83c-.39-2.392-1.768-4.268-3.653-5.338l1.106-2.432a.75.75 0 1 0-1.366-.62l-1.112 2.446A7.9 7.9 0 0 0 8 3.5a7.9 7.9 0 0 0-2.455.386L4.433 1.44a.75.75 0 1 0-1.366.62l1.106 2.432C2.288 5.562.909 7.438.52 9.83c-.13.798-.178 1.655.107 2.433.325.89.989 1.441 1.768 1.75.701.28 1.54.383 2.404.433.887.052 1.963.054 3.201.054s2.314-.002 3.2-.054c.864-.05 1.704-.154 2.405-.432.78-.31 1.443-.86 1.768-1.75.285-.78.237-1.636.107-2.434M2 10.071C1.53 12.961 3 13 8 13s6.47-.038 6-2.929C13.5 7 11 5 8 5s-5.5 2-6 5.071m8.5 1.179a.75.75 0 0 1-.75-.75V9a.75.75 0 0 1 1.5 0v1.5a.75.75 0 0 1-.75.75m-5.75-.75a.75.75 0 0 0 1.5 0V9a.75.75 0 0 0-1.5 0z"
clipRule="evenodd"
/>
</svg>
);
export default LogoAndroid;
1 change: 1 addition & 0 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,7 @@ export {default as ListUl} from './ListUl';
export {default as Lock} from './Lock';
export {default as LockOpen} from './LockOpen';
export {default as LogoAcrobat} from './LogoAcrobat';
export {default as LogoAndroid} from './LogoAndroid';
export {default as LogoDocker} from './LogoDocker';
export {default as LogoDrawIo} from './LogoDrawIo';
export {default as LogoFacebook} from './LogoFacebook';
Expand Down
7 changes: 7 additions & 0 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3773,6 +3773,13 @@
"componentName": "LogoAcrobat",
"keywords": []
},
{
"name": "logo-android",
"style": "regular",
"svgName": "logo-android",
"componentName": "LogoAndroid",
"keywords": []
},
{
"name": "logo-docker",
"style": "regular",
Expand Down
2 changes: 1 addition & 1 deletion svgs/face-robot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions svgs/logo-android.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading