├── .editorconfig ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── README.md ├── examples ├── react │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.tsx │ │ ├── codes.ts │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── vue │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.vue │ ├── codes.ts │ ├── main.ts │ ├── style.css │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── vite.config.ts │ └── vite.config.ts.timestamp-1752822116242.js ├── materials ├── angel.svg ├── angry.svg ├── astonish.svg ├── awkward.svg ├── blink.svg ├── complacent.svg ├── cool.svg ├── cry.svg ├── cute.svg ├── disdain.svg ├── drool.svg ├── embarassed.svg ├── evil.svg ├── excited.svg ├── facewithrollingeyes.svg ├── flushed.svg ├── funnyface.svg ├── greedy.svg ├── happy.svg ├── hehe.svg ├── joyful.svg ├── laugh.svg ├── laughwithtears.svg ├── loveface.svg ├── lovely.svg ├── nap.svg ├── pride.svg ├── proud.svg ├── rage.svg ├── scream.svg ├── shock.svg ├── shout.svg ├── slap.svg ├── smile.svg ├── smileface.svg ├── speechless.svg ├── stun.svg ├── sulk.svg ├── suprised.svg ├── tears.svg ├── thinking.svg ├── weep.svg ├── wicked.svg ├── wow.svg ├── wronged.svg └── yummy.svg ├── package.json ├── packages ├── react │ ├── README.md │ ├── package.json │ ├── src │ │ ├── angel.tsx │ │ ├── angry.tsx │ │ ├── astonish.tsx │ │ ├── awkward.tsx │ │ ├── blink.tsx │ │ ├── complacent.tsx │ │ ├── cool.tsx │ │ ├── cry.tsx │ │ ├── cute.tsx │ │ ├── disdain.tsx │ │ ├── drool.tsx │ │ ├── embarrassed.tsx │ │ ├── evil.tsx │ │ ├── excited.tsx │ │ ├── facewithrollingeyes.tsx │ │ ├── flushed.tsx │ │ ├── funnyface.tsx │ │ ├── greedy.tsx │ │ ├── happy.tsx │ │ ├── hehe.tsx │ │ ├── index.ts │ │ ├── joyful.tsx │ │ ├── laugh.tsx │ │ ├── laughwithtears.tsx │ │ ├── loveface.tsx │ │ ├── lovely.tsx │ │ ├── nap.tsx │ │ ├── pride.tsx │ │ ├── proud.tsx │ │ ├── rage.tsx │ │ ├── scream.tsx │ │ ├── shock.tsx │ │ ├── shout.tsx │ │ ├── slap.tsx │ │ ├── smile.tsx │ │ ├── smileface.tsx │ │ ├── speechless.tsx │ │ ├── stun.tsx │ │ ├── sulk.tsx │ │ ├── surprised.tsx │ │ ├── tears.tsx │ │ ├── thinking.tsx │ │ ├── weep.tsx │ │ ├── wicked.tsx │ │ ├── wow.tsx │ │ ├── wronged.tsx │ │ └── yummy.tsx │ ├── tsconfig.json │ ├── tsup.config.ts │ └── types │ │ └── react-jsx-runtime.d.ts └── vue │ ├── README.md │ ├── package.json │ ├── src │ ├── angel.tsx │ ├── angry.tsx │ ├── astonish.tsx │ ├── awkward.tsx │ ├── blink.tsx │ ├── complacent.tsx │ ├── cool.tsx │ ├── cry.tsx │ ├── cute.tsx │ ├── disdain.tsx │ ├── drool.tsx │ ├── embarrassed.tsx │ ├── evil.tsx │ ├── excited.tsx │ ├── facewithrollingeyes.tsx │ ├── flushed.tsx │ ├── funnyface.tsx │ ├── greedy.tsx │ ├── happy.tsx │ ├── hehe.tsx │ ├── index.ts │ ├── joyful.tsx │ ├── laugh.tsx │ ├── laughwithtears.tsx │ ├── loveface.tsx │ ├── lovely.tsx │ ├── nap.tsx │ ├── pride.tsx │ ├── proud.tsx │ ├── rage.tsx │ ├── scream.tsx │ ├── shock.tsx │ ├── shout.tsx │ ├── slap.tsx │ ├── smile.tsx │ ├── smileface.tsx │ ├── speechless.tsx │ ├── stun.tsx │ ├── sulk.tsx │ ├── surprised.tsx │ ├── tears.tsx │ ├── thinking.tsx │ ├── weep.tsx │ ├── wicked.tsx │ ├── wow.tsx │ ├── wronged.tsx │ └── yummy.tsx │ ├── tsconfig.json │ ├── tsup.config.ts │ └── types │ └── vue-shim.d.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── package.json ├── src │ ├── commands │ │ └── make-icon.ts │ └── constants │ │ └── tiktok-emoji-codes.ts └── tsconfig.json └── turbo.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/README.md -------------------------------------------------------------------------------- /examples/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/.gitignore -------------------------------------------------------------------------------- /examples/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/README.md -------------------------------------------------------------------------------- /examples/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/index.html -------------------------------------------------------------------------------- /examples/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/package.json -------------------------------------------------------------------------------- /examples/react/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/public/vite.svg -------------------------------------------------------------------------------- /examples/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/src/App.tsx -------------------------------------------------------------------------------- /examples/react/src/codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/src/codes.ts -------------------------------------------------------------------------------- /examples/react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/src/index.css -------------------------------------------------------------------------------- /examples/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/src/main.tsx -------------------------------------------------------------------------------- /examples/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/react/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/tsconfig.app.json -------------------------------------------------------------------------------- /examples/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/tsconfig.json -------------------------------------------------------------------------------- /examples/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/tsconfig.node.json -------------------------------------------------------------------------------- /examples/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/react/vite.config.ts -------------------------------------------------------------------------------- /examples/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/.gitignore -------------------------------------------------------------------------------- /examples/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/README.md -------------------------------------------------------------------------------- /examples/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/index.html -------------------------------------------------------------------------------- /examples/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/package.json -------------------------------------------------------------------------------- /examples/vue/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/public/vite.svg -------------------------------------------------------------------------------- /examples/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/src/App.vue -------------------------------------------------------------------------------- /examples/vue/src/codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/src/codes.ts -------------------------------------------------------------------------------- /examples/vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/src/main.ts -------------------------------------------------------------------------------- /examples/vue/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/src/style.css -------------------------------------------------------------------------------- /examples/vue/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/tsconfig.json -------------------------------------------------------------------------------- /examples/vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/vite.config.ts -------------------------------------------------------------------------------- /examples/vue/vite.config.ts.timestamp-1752822116242.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/examples/vue/vite.config.ts.timestamp-1752822116242.js -------------------------------------------------------------------------------- /materials/angel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/angel.svg -------------------------------------------------------------------------------- /materials/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/angry.svg -------------------------------------------------------------------------------- /materials/astonish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/astonish.svg -------------------------------------------------------------------------------- /materials/awkward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/awkward.svg -------------------------------------------------------------------------------- /materials/blink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/blink.svg -------------------------------------------------------------------------------- /materials/complacent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/complacent.svg -------------------------------------------------------------------------------- /materials/cool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/cool.svg -------------------------------------------------------------------------------- /materials/cry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/cry.svg -------------------------------------------------------------------------------- /materials/cute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/cute.svg -------------------------------------------------------------------------------- /materials/disdain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/disdain.svg -------------------------------------------------------------------------------- /materials/drool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/drool.svg -------------------------------------------------------------------------------- /materials/embarassed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/embarassed.svg -------------------------------------------------------------------------------- /materials/evil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/evil.svg -------------------------------------------------------------------------------- /materials/excited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/excited.svg -------------------------------------------------------------------------------- /materials/facewithrollingeyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/facewithrollingeyes.svg -------------------------------------------------------------------------------- /materials/flushed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/flushed.svg -------------------------------------------------------------------------------- /materials/funnyface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/funnyface.svg -------------------------------------------------------------------------------- /materials/greedy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/greedy.svg -------------------------------------------------------------------------------- /materials/happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/happy.svg -------------------------------------------------------------------------------- /materials/hehe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/hehe.svg -------------------------------------------------------------------------------- /materials/joyful.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/joyful.svg -------------------------------------------------------------------------------- /materials/laugh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/laugh.svg -------------------------------------------------------------------------------- /materials/laughwithtears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/laughwithtears.svg -------------------------------------------------------------------------------- /materials/loveface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/loveface.svg -------------------------------------------------------------------------------- /materials/lovely.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/lovely.svg -------------------------------------------------------------------------------- /materials/nap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/nap.svg -------------------------------------------------------------------------------- /materials/pride.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/pride.svg -------------------------------------------------------------------------------- /materials/proud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/proud.svg -------------------------------------------------------------------------------- /materials/rage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/rage.svg -------------------------------------------------------------------------------- /materials/scream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/scream.svg -------------------------------------------------------------------------------- /materials/shock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/shock.svg -------------------------------------------------------------------------------- /materials/shout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/shout.svg -------------------------------------------------------------------------------- /materials/slap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/slap.svg -------------------------------------------------------------------------------- /materials/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/smile.svg -------------------------------------------------------------------------------- /materials/smileface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/smileface.svg -------------------------------------------------------------------------------- /materials/speechless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/speechless.svg -------------------------------------------------------------------------------- /materials/stun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/stun.svg -------------------------------------------------------------------------------- /materials/sulk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/sulk.svg -------------------------------------------------------------------------------- /materials/suprised.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/suprised.svg -------------------------------------------------------------------------------- /materials/tears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/tears.svg -------------------------------------------------------------------------------- /materials/thinking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/thinking.svg -------------------------------------------------------------------------------- /materials/weep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/weep.svg -------------------------------------------------------------------------------- /materials/wicked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/wicked.svg -------------------------------------------------------------------------------- /materials/wow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/wow.svg -------------------------------------------------------------------------------- /materials/wronged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/wronged.svg -------------------------------------------------------------------------------- /materials/yummy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/materials/yummy.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/package.json -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/src/angel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/angel.tsx -------------------------------------------------------------------------------- /packages/react/src/angry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/angry.tsx -------------------------------------------------------------------------------- /packages/react/src/astonish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/astonish.tsx -------------------------------------------------------------------------------- /packages/react/src/awkward.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/awkward.tsx -------------------------------------------------------------------------------- /packages/react/src/blink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/blink.tsx -------------------------------------------------------------------------------- /packages/react/src/complacent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/complacent.tsx -------------------------------------------------------------------------------- /packages/react/src/cool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/cool.tsx -------------------------------------------------------------------------------- /packages/react/src/cry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/cry.tsx -------------------------------------------------------------------------------- /packages/react/src/cute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/cute.tsx -------------------------------------------------------------------------------- /packages/react/src/disdain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/disdain.tsx -------------------------------------------------------------------------------- /packages/react/src/drool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/drool.tsx -------------------------------------------------------------------------------- /packages/react/src/embarrassed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/embarrassed.tsx -------------------------------------------------------------------------------- /packages/react/src/evil.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/evil.tsx -------------------------------------------------------------------------------- /packages/react/src/excited.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/excited.tsx -------------------------------------------------------------------------------- /packages/react/src/facewithrollingeyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/facewithrollingeyes.tsx -------------------------------------------------------------------------------- /packages/react/src/flushed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/flushed.tsx -------------------------------------------------------------------------------- /packages/react/src/funnyface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/funnyface.tsx -------------------------------------------------------------------------------- /packages/react/src/greedy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/greedy.tsx -------------------------------------------------------------------------------- /packages/react/src/happy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/happy.tsx -------------------------------------------------------------------------------- /packages/react/src/hehe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/hehe.tsx -------------------------------------------------------------------------------- /packages/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/index.ts -------------------------------------------------------------------------------- /packages/react/src/joyful.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/joyful.tsx -------------------------------------------------------------------------------- /packages/react/src/laugh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/laugh.tsx -------------------------------------------------------------------------------- /packages/react/src/laughwithtears.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/laughwithtears.tsx -------------------------------------------------------------------------------- /packages/react/src/loveface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/loveface.tsx -------------------------------------------------------------------------------- /packages/react/src/lovely.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/lovely.tsx -------------------------------------------------------------------------------- /packages/react/src/nap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/nap.tsx -------------------------------------------------------------------------------- /packages/react/src/pride.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/pride.tsx -------------------------------------------------------------------------------- /packages/react/src/proud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/proud.tsx -------------------------------------------------------------------------------- /packages/react/src/rage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/rage.tsx -------------------------------------------------------------------------------- /packages/react/src/scream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/scream.tsx -------------------------------------------------------------------------------- /packages/react/src/shock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/shock.tsx -------------------------------------------------------------------------------- /packages/react/src/shout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/shout.tsx -------------------------------------------------------------------------------- /packages/react/src/slap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/slap.tsx -------------------------------------------------------------------------------- /packages/react/src/smile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/smile.tsx -------------------------------------------------------------------------------- /packages/react/src/smileface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/smileface.tsx -------------------------------------------------------------------------------- /packages/react/src/speechless.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/speechless.tsx -------------------------------------------------------------------------------- /packages/react/src/stun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/stun.tsx -------------------------------------------------------------------------------- /packages/react/src/sulk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/sulk.tsx -------------------------------------------------------------------------------- /packages/react/src/surprised.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/surprised.tsx -------------------------------------------------------------------------------- /packages/react/src/tears.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/tears.tsx -------------------------------------------------------------------------------- /packages/react/src/thinking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/thinking.tsx -------------------------------------------------------------------------------- /packages/react/src/weep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/weep.tsx -------------------------------------------------------------------------------- /packages/react/src/wicked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/wicked.tsx -------------------------------------------------------------------------------- /packages/react/src/wow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/wow.tsx -------------------------------------------------------------------------------- /packages/react/src/wronged.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/wronged.tsx -------------------------------------------------------------------------------- /packages/react/src/yummy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/src/yummy.tsx -------------------------------------------------------------------------------- /packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/tsconfig.json -------------------------------------------------------------------------------- /packages/react/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/react/tsup.config.ts -------------------------------------------------------------------------------- /packages/react/types/react-jsx-runtime.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react/jsx-runtime"; 2 | -------------------------------------------------------------------------------- /packages/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/README.md -------------------------------------------------------------------------------- /packages/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/package.json -------------------------------------------------------------------------------- /packages/vue/src/angel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/angel.tsx -------------------------------------------------------------------------------- /packages/vue/src/angry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/angry.tsx -------------------------------------------------------------------------------- /packages/vue/src/astonish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/astonish.tsx -------------------------------------------------------------------------------- /packages/vue/src/awkward.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/awkward.tsx -------------------------------------------------------------------------------- /packages/vue/src/blink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/blink.tsx -------------------------------------------------------------------------------- /packages/vue/src/complacent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/complacent.tsx -------------------------------------------------------------------------------- /packages/vue/src/cool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/cool.tsx -------------------------------------------------------------------------------- /packages/vue/src/cry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/cry.tsx -------------------------------------------------------------------------------- /packages/vue/src/cute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/cute.tsx -------------------------------------------------------------------------------- /packages/vue/src/disdain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/disdain.tsx -------------------------------------------------------------------------------- /packages/vue/src/drool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/drool.tsx -------------------------------------------------------------------------------- /packages/vue/src/embarrassed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/embarrassed.tsx -------------------------------------------------------------------------------- /packages/vue/src/evil.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/evil.tsx -------------------------------------------------------------------------------- /packages/vue/src/excited.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/excited.tsx -------------------------------------------------------------------------------- /packages/vue/src/facewithrollingeyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/facewithrollingeyes.tsx -------------------------------------------------------------------------------- /packages/vue/src/flushed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/flushed.tsx -------------------------------------------------------------------------------- /packages/vue/src/funnyface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/funnyface.tsx -------------------------------------------------------------------------------- /packages/vue/src/greedy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/greedy.tsx -------------------------------------------------------------------------------- /packages/vue/src/happy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/happy.tsx -------------------------------------------------------------------------------- /packages/vue/src/hehe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/hehe.tsx -------------------------------------------------------------------------------- /packages/vue/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/index.ts -------------------------------------------------------------------------------- /packages/vue/src/joyful.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/joyful.tsx -------------------------------------------------------------------------------- /packages/vue/src/laugh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/laugh.tsx -------------------------------------------------------------------------------- /packages/vue/src/laughwithtears.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/laughwithtears.tsx -------------------------------------------------------------------------------- /packages/vue/src/loveface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/loveface.tsx -------------------------------------------------------------------------------- /packages/vue/src/lovely.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/lovely.tsx -------------------------------------------------------------------------------- /packages/vue/src/nap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/nap.tsx -------------------------------------------------------------------------------- /packages/vue/src/pride.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/pride.tsx -------------------------------------------------------------------------------- /packages/vue/src/proud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/proud.tsx -------------------------------------------------------------------------------- /packages/vue/src/rage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/rage.tsx -------------------------------------------------------------------------------- /packages/vue/src/scream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/scream.tsx -------------------------------------------------------------------------------- /packages/vue/src/shock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/shock.tsx -------------------------------------------------------------------------------- /packages/vue/src/shout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/shout.tsx -------------------------------------------------------------------------------- /packages/vue/src/slap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/slap.tsx -------------------------------------------------------------------------------- /packages/vue/src/smile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/smile.tsx -------------------------------------------------------------------------------- /packages/vue/src/smileface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/smileface.tsx -------------------------------------------------------------------------------- /packages/vue/src/speechless.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/speechless.tsx -------------------------------------------------------------------------------- /packages/vue/src/stun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/stun.tsx -------------------------------------------------------------------------------- /packages/vue/src/sulk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/sulk.tsx -------------------------------------------------------------------------------- /packages/vue/src/surprised.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/surprised.tsx -------------------------------------------------------------------------------- /packages/vue/src/tears.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/tears.tsx -------------------------------------------------------------------------------- /packages/vue/src/thinking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/thinking.tsx -------------------------------------------------------------------------------- /packages/vue/src/weep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/weep.tsx -------------------------------------------------------------------------------- /packages/vue/src/wicked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/wicked.tsx -------------------------------------------------------------------------------- /packages/vue/src/wow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/wow.tsx -------------------------------------------------------------------------------- /packages/vue/src/wronged.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/wronged.tsx -------------------------------------------------------------------------------- /packages/vue/src/yummy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/src/yummy.tsx -------------------------------------------------------------------------------- /packages/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/tsconfig.json -------------------------------------------------------------------------------- /packages/vue/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/tsup.config.ts -------------------------------------------------------------------------------- /packages/vue/types/vue-shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/packages/vue/types/vue-shim.d.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/src/commands/make-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/scripts/src/commands/make-icon.ts -------------------------------------------------------------------------------- /scripts/src/constants/tiktok-emoji-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/scripts/src/constants/tiktok-emoji-codes.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boqingren/tiktok-emojis/HEAD/turbo.json --------------------------------------------------------------------------------