-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33b57ef
commit 9178c7e
Showing
587 changed files
with
5,378 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: "Create Code Connect" | ||
description: "Generate code connect files" | ||
inputs: | ||
figma-access-token: | ||
description: "The personal access token given by Figma. Required to make API calls" | ||
required: true | ||
|
||
runs: | ||
using: "node20" | ||
main: "index.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { readFileSync } from "fs"; | ||
import { generateCodeConnectFiles } from "../../dist/scripts/code-connect/generate-code-connect-files.js"; | ||
|
||
const main = async () => { | ||
const iconManifest = new Map(Object.entries(JSON.parse(readFileSync("../../outputs/icon-manifest.json")))); | ||
const dir = "../../outputs/code-connect"; | ||
|
||
generateCodeConnectFiles(dir, iconManifest); | ||
}; | ||
|
||
main(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: "Publish Code Connect" | ||
description: "Publish code connect files" | ||
inputs: | ||
figma-access-token: | ||
description: "The personal access token given by Figma. Required to make API calls" | ||
required: true | ||
|
||
runs: | ||
using: "node20" | ||
main: "index.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import core from "@actions/core"; | ||
import util from "util"; | ||
import { exec } from "child_process"; | ||
const asyncExec = util.promisify(exec); | ||
|
||
const FIGMA_ACCESS_TOKEN = core.getInput("figma-access-token") || process.env.FIGMA_ACCESS_TOKEN; | ||
|
||
const { stdout, stderr } = await asyncExec(`npx figma connect publish --token ${FIGMA_ACCESS_TOKEN}`, { | ||
cwd: "../..", | ||
}); | ||
|
||
console.log(stdout); | ||
console.error(stderr); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"codeConnect": { | ||
"include": ["outputs/code-connect/**/*.figma.ts"], | ||
"exclude": ["test/**/*.figma.ts"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:519", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>activity</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:723", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=240:46", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add-alert</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:701", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add-box</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4518", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add-call</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:702", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add-circle</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:703", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add-circle outline</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1122", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add-group</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1119", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add-person</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:54", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>add-task</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1753", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>adjustments</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4022", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>alarm</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=803:1800", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>alert</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1126", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>alert-active</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1128", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>alert-outline</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1126", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-center</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1358", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-horizontal center</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1112", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-horizontal left</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1111", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-horizontal right</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1123", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-left</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1125", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-right</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1113", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-vertical bottom</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1110", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-vertical center</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1114", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>align-vertical top</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3536", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>analytics</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=649:1688", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>android</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:2254", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>antenna</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:483", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>app-edit</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4810", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>apps</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4026", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>ar</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4858", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>arrow-back</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=247:571", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>arrow-down</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=247:570", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>arrow-forward</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=247:572", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>arrow-up</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1173", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>attachment</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3370", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>audio</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:36", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>audit-activity</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1105:3170", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>auto</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4376", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>auto-delete</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1108:3291", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>awb</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:724", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>backspace</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1132", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>bad-mood</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1991", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>barcode</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1926", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>barcode-bluetooth</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=841:2071", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>barcode-done</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=841:2086", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>barcode-image scan</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1956", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>barcode-qr code</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1941", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>barcode-scanner down</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1911", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>barcode-settings</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3402", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>basket</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:787", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>battery</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:786", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>battery-alert</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:788", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>battery-charging</zeta-icon>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { figma, html } from "@figma/code-connect/html"; | ||
figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1491", { | ||
props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, | ||
example: (props) => html`<zeta-icon rounded=${props.rounded}>block</zeta-icon>`, | ||
}); |
Oops, something went wrong.