Skip to content

Commit b640bf3

Browse files
feat(icons): sync and connect icons with figma library (#1862)
* feat(icons): sync and connect icons with figma library New icons: - document-time - layout-side-by-side - layout-stack - layout-structured * Apply suggestion from @nhironaka * Apply suggestion from @nhironaka --------- Co-authored-by: nhironaka <7075422+nhironaka@users.noreply.github.com> Co-authored-by: Naomi Hironaka <nhironaka@users.noreply.github.com>
1 parent 5f3e9bf commit b640bf3

File tree

4 files changed

+57
-2
lines changed

4 files changed

+57
-2
lines changed

.changeset/funny-walls-remain.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"@launchpad-ui/icons": patch
3+
---
4+
5+
feat(icons): sync and connect icons with figma library
6+
7+
New icons:
8+
- document-time
9+
- layout-side-by-side
10+
- layout-stack
11+
- layout-structured

packages/icons/figma/Icon.figma.tsx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -949,6 +949,27 @@ figma.connect(Icon, 'https://figma.com/file/98HKKXL2dTle29ikJ3tzk7/?node-id=6-14
949949
example: () => <Icon name="lightbulb" />,
950950
});
951951

952+
figma.connect(Icon, 'https://figma.com/file/98HKKXL2dTle29ikJ3tzk7/?node-id=25769-134', {
953+
props: {
954+
name: 'layout-structured',
955+
},
956+
example: () => <Icon name="layout-structured" />,
957+
});
958+
959+
figma.connect(Icon, 'https://figma.com/file/98HKKXL2dTle29ikJ3tzk7/?node-id=25769-128', {
960+
props: {
961+
name: 'layout-side-by-side',
962+
},
963+
example: () => <Icon name="layout-side-by-side" />,
964+
});
965+
966+
figma.connect(Icon, 'https://figma.com/file/98HKKXL2dTle29ikJ3tzk7/?node-id=25769-122', {
967+
props: {
968+
name: 'layout-stack',
969+
},
970+
example: () => <Icon name="layout-stack" />,
971+
});
972+
952973
figma.connect(Icon, 'https://figma.com/file/98HKKXL2dTle29ikJ3tzk7/?node-id=17108-128', {
953974
props: {
954975
name: 'layers-difference',
@@ -1362,6 +1383,13 @@ figma.connect(Icon, 'https://figma.com/file/98HKKXL2dTle29ikJ3tzk7/?node-id=6-14
13621383
example: () => <Icon name="door-exit" />,
13631384
});
13641385

1386+
figma.connect(Icon, 'https://figma.com/file/98HKKXL2dTle29ikJ3tzk7/?node-id=25777-125', {
1387+
props: {
1388+
name: 'document-time',
1389+
},
1390+
example: () => <Icon name="document-time" />,
1391+
});
1392+
13651393
figma.connect(Icon, 'https://figma.com/file/98HKKXL2dTle29ikJ3tzk7/?node-id=6-141636', {
13661394
props: {
13671395
name: 'document-question',

packages/icons/src/img/sprite.svg

Lines changed: 14 additions & 2 deletions
Loading

packages/icons/src/types.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ const icons = [
136136
'diamond-outline',
137137
'diamonds',
138138
'document-question',
139+
'document-time',
139140
'door-exit',
140141
'download',
141142
'edit',
@@ -195,6 +196,9 @@ const icons = [
195196
'key',
196197
'keyboard',
197198
'layers-difference',
199+
'layout-side-by-side',
200+
'layout-stack',
201+
'layout-structured',
198202
'lightbulb',
199203
'link',
200204
'link-external',

0 commit comments

Comments
 (0)