daangn / icona

icon integration platform (figma to github)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Icona

You can export Figma SVG files to GitHub with only one click.

This is a Figma plugin to export SVG files to GitHub with only one click. Shorten the process between designers (Figma) and developers (GitHub).

  • Designer: Build icon set in Figma and click deploy button, that's it.
  • Developer: Check the PR and use the icon svg set in your project. (Make react component, Make Pdf, Make XML, ...etc)

Boilerplate

Preview

preview

Setting

We need github repository url, github api token

setting

  1. Repository URL: GitHub repository full url.
  2. Github API Key: GitHub API Key

API Key need repo, workflow scope.

repo-scope

If you use Fine-grained personal access tokens, you need contents, pull requests, metadata scope.

fine-grained

How to use

Assuming you're done setting.

Designers

  1. Install Icona figma-plugin in Figma.
  2. Create a new file in Figma and draw icons in frame named icona-frame (convention).
  3. Fill icons in icona-frame frame and Deploy it.
  4. Check the PR and merge it.

Developers

Icona plugin exports only one file that icons.json file in .icona folder. I thought it would be inefficient for the figma plugin to make too many API requests to github, so I created a library that only sends one file to github and allows developers to create various assets(react component, pdf, xml, ...etc) with that file using @icona/generator library.

  1. Install @icona/generator library in your project.
yarn add -D @icona/generator
  1. Create build file with @icona/generator library.

  2. Run build script. (ex: node icona.js)

  3. That's it. You can deploy it or use it in your project.

Auto Generate (Github Action)

If you want to automate the process of generating assets when PR uploaded, you can use github action.

Then you can use the generated assets that are automatically generated in the PR.

Products

Where use this?

If you use this library, please send PR to add your project in this list.

Common Problems

1. If you use removeAttrs and remove id prop in svgoConfig option, you have to check that exists <mask> tag in your svg file.

If the <mask /> tag is looking at a specific id value as a URL, the mask tag should not delete the id value in the removeAttrs plugin.

If you use <mask> tag and using removeAttrs plugin in svgoConfig like below...

<svg
  width="24"
  height="24"
  viewBox="0 0 24 24"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  data-seed-icon="true"
  data-seed-icon-version="0.5.4"
>
  <g>
    <g>
      <mask id="path-1-inside-1_12571_4011" fill="currentColor">
        <path
          d="..."
          fill="currentColor"
          mask="url(#path-1-inside-1_12571_4011)"
        />
      </mask>
    </g>
  </g>
</svg>

The <mask /> tag must be exception-handled to avoid deleting the id value.

svgoConfig: {
   plugins: [
     {
       name: "removeAttrs",
       params: {
         attrs: ["id"],
       },
       fn: () => {
         return {
           element: {
             enter: node => {
               // NOTE: The `<mask />` tag must be exception-handled to avoid deleting the id value.

               // NOTE: Not working (Maybe bug)
               // if (node.name === 'mask') return;

               // NOTE: Working
               if (node.name !== 'mask') delete node.attributes.id;
             }
           }
         }
       }
     },
   ],
},

About

icon integration platform (figma to github)


Languages

Language:TypeScript 48.4%Language:Dart 47.1%Language:JavaScript 4.2%Language:HTML 0.2%