Skip to content
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 package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/pkg.icons/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,5 @@ export const icons = [
'VK',
'Shield',
'ShieldOff',
'Transform',
] as const;
11 changes: 11 additions & 0 deletions packages/pkg.icons/icons/Transform.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Svg, IconProps } from '../Svg';

export const Transform = ({ ...props }: IconProps) => (
<Svg {...props}>
<path
fill="currentColor"
d="M3.686 2.039a1.945 1.945 0 0 0-1.625 1.542c-.085.397-.085 2.441 0 2.838.086.408.237.685.536.984.316.316.597.461 1.061.549L4 8.017v7.979l-.15.023c-.609.092-.894.225-1.253.58-.522.518-.596.816-.596 2.401 0 1.584.074 1.881.596 2.403s.819.596 2.403.596c1.582 0 1.873-.073 2.403-.598.316-.314.461-.593.549-1.059L8.017 20h7.966l.065.342c.088.464.233.745.549 1.061.522.522.819.596 2.403.596 1.582 0 1.876-.074 2.401-.598.524-.525.598-.819.598-2.401 0-1.582-.073-1.876-.598-2.401-.356-.355-.64-.487-1.251-.58l-.15-.023V8.017l.342-.065c.456-.086.743-.235 1.059-.551.298-.299.454-.583.539-.982.084-.397.084-2.441-.001-2.838-.148-.7-.607-1.217-1.304-1.469-.248-.089-.294-.092-1.635-.092s-1.387.003-1.635.092a2.063 2.063 0 0 0-.853.564c-.249.276-.385.565-.464.982L15.983 4H8.017l-.065-.342c-.143-.755-.599-1.29-1.317-1.544-.241-.085-.323-.09-1.495-.099-.682-.005-1.336.006-1.454.024M6 5v1H4V4h2v1m14 0v1h-2V4h2v1m-3.952 1.342c.088.464.233.745.549 1.061.316.316.597.461 1.061.549l.342.065v7.979l-.15.023c-.609.092-.894.225-1.253.58-.316.314-.461.593-.549 1.059l-.065.342H8.017l-.065-.342c-.086-.456-.235-.743-.551-1.059-.356-.355-.64-.487-1.251-.58L6 15.996V8.017l.342-.065c.456-.086.743-.235 1.059-.551.316-.316.465-.603.551-1.059L8.017 6h7.966l.065.342M6 19v1H4v-2h2v1m14 0v1h-2v-2h2v1"
fillRule="evenodd"
/>
</Svg>
);
2 changes: 2 additions & 0 deletions packages/pkg.icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ import { VK } from './icons/VK';
import { Shield } from './icons/Shield';
import { ShieldOff } from './icons/ShieldOff';
import { icons } from './config';
import { Transform } from './icons/Transform';

export {
Account,
Expand Down Expand Up @@ -322,6 +323,7 @@ export {
TelegramFilled,
Text,
ThinArrowRight,
Transform,
Trapezoid,
Trash,
Triangle,
Expand Down
2 changes: 1 addition & 1 deletion packages/pkg.icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xipkg/icons",
"version": "3.0.13",
"version": "3.0.14",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
Expand Down
Loading