├── .changeset └── config.json ├── .editorconfig ├── .github ├── FUNDING.yaml ├── codecov.yaml └── workflows │ ├── changesets.yaml │ └── tests.yaml ├── .gitignore ├── .npmrc ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.js ├── lefthook.yaml ├── meta └── phosphor-mark-tight-yellow.png ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.js ├── src ├── plugin.d.ts └── plugin.js ├── tests ├── __snapshots__ │ ├── v3 │ │ ├── custom-default-weight.css │ │ ├── custom-layer.css │ │ ├── custom-prefix.css │ │ ├── custom-property.css │ │ ├── default.css │ │ ├── no-icon-found.css │ │ ├── no-icon-name.css │ │ ├── no-layer.css │ │ ├── weight-404.css │ │ ├── weight-bold.css │ │ ├── weight-duotone.css │ │ ├── weight-fill.css │ │ ├── weight-light.css │ │ ├── weight-regular.css │ │ └── weight-thin.css │ └── v4 │ │ ├── custom-default-weight.css │ │ ├── custom-layer.css │ │ ├── custom-prefix.css │ │ ├── custom-property.css │ │ ├── default.css │ │ ├── no-icon-found.css │ │ ├── no-icon-name.css │ │ ├── no-layer.css │ │ ├── weight-404.css │ │ ├── weight-bold.css │ │ ├── weight-duotone.css │ │ ├── weight-fill.css │ │ ├── weight-light.css │ │ ├── weight-regular.css │ │ └── weight-thin.css ├── plugin.test.ts └── vite │ ├── __snapshots__ │ ├── v3.css │ └── v4.css │ ├── v3 │ ├── index.html │ ├── package.json │ ├── style.css │ ├── tsconfig.json │ └── vite.config.ts │ ├── v4 │ ├── index.html │ ├── package.json │ ├── style.css │ ├── tsconfig.json │ └── vite.config.ts │ └── vite.test.ts ├── tsconfig.json └── vitest.config.ts /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: vnphanquang 2 | -------------------------------------------------------------------------------- /.github/codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/.github/codecov.yaml -------------------------------------------------------------------------------- /.github/workflows/changesets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/.github/workflows/changesets.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | node_modules/ 3 | pnpm-lock.yaml 4 | 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/eslint.config.js -------------------------------------------------------------------------------- /lefthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/lefthook.yaml -------------------------------------------------------------------------------- /meta/phosphor-mark-tight-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/meta/phosphor-mark-tight-yellow.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/src/plugin.d.ts -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/src/plugin.js -------------------------------------------------------------------------------- /tests/__snapshots__/v3/custom-default-weight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/custom-default-weight.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/custom-layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/custom-layer.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/custom-prefix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/custom-prefix.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/custom-property.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/custom-property.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/default.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/no-icon-found.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/no-icon-found.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/no-icon-name.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/no-icon-name.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/no-layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/no-layer.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/weight-404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/weight-404.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/weight-bold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/weight-bold.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/weight-duotone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/weight-duotone.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/weight-fill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/weight-fill.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/weight-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/weight-light.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/weight-regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/weight-regular.css -------------------------------------------------------------------------------- /tests/__snapshots__/v3/weight-thin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v3/weight-thin.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/custom-default-weight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/custom-default-weight.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/custom-layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/custom-layer.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/custom-prefix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/custom-prefix.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/custom-property.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/custom-property.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/default.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/no-icon-found.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/no-icon-found.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/no-icon-name.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/no-icon-name.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/no-layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/no-layer.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/weight-404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/weight-404.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/weight-bold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/weight-bold.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/weight-duotone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/weight-duotone.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/weight-fill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/weight-fill.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/weight-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/weight-light.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/weight-regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/weight-regular.css -------------------------------------------------------------------------------- /tests/__snapshots__/v4/weight-thin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/__snapshots__/v4/weight-thin.css -------------------------------------------------------------------------------- /tests/plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/plugin.test.ts -------------------------------------------------------------------------------- /tests/vite/__snapshots__/v3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/__snapshots__/v3.css -------------------------------------------------------------------------------- /tests/vite/__snapshots__/v4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/__snapshots__/v4.css -------------------------------------------------------------------------------- /tests/vite/v3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v3/index.html -------------------------------------------------------------------------------- /tests/vite/v3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v3/package.json -------------------------------------------------------------------------------- /tests/vite/v3/style.css: -------------------------------------------------------------------------------- 1 | @tailwind utilities; 2 | -------------------------------------------------------------------------------- /tests/vite/v3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v3/tsconfig.json -------------------------------------------------------------------------------- /tests/vite/v3/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v3/vite.config.ts -------------------------------------------------------------------------------- /tests/vite/v4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v4/index.html -------------------------------------------------------------------------------- /tests/vite/v4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v4/package.json -------------------------------------------------------------------------------- /tests/vite/v4/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v4/style.css -------------------------------------------------------------------------------- /tests/vite/v4/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v4/tsconfig.json -------------------------------------------------------------------------------- /tests/vite/v4/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/v4/vite.config.ts -------------------------------------------------------------------------------- /tests/vite/vite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tests/vite/vite.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnphanquang/phosphor-icons-tailwindcss/HEAD/vitest.config.ts --------------------------------------------------------------------------------