Skip to content

Commit

Permalink
emoji/snowflake (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkroe committed Jun 6, 2024
1 parent 47b7bae commit 8f77b50
Show file tree
Hide file tree
Showing 6 changed files with 225 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gkit/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itgenio/gkit",
"version": "0.0.192",
"version": "0.0.193",
"description": "GKIT",
"main": "./index.js",
"scripts": {
Expand Down
212 changes: 212 additions & 0 deletions gkit/src/components/emoji/assets/snowflake_color.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions gkit/src/components/emoji/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ export * from './custom';
export * from './faceWithSteamFromNose';
export * from './frowningFace';
export * from './faceWithRollingEyes';
export * from './snowflake';
8 changes: 8 additions & 0 deletions gkit/src/components/emoji/snowflake.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import classNames from 'classnames';
import React from 'react';
import { SvgIconProps } from '@itgenio/icons/types';
import Snowflake from './assets/snowflake_color.svg';

export function SnowflakeEmoji({ className, ...props }: Partial<SvgIconProps> = {}) {
return <Snowflake className={classNames('snowflake-emoji', className)} {...props} />;
}

0 comments on commit 8f77b50

Please sign in to comment.