Bump to phosphor-react@0.1.6

This commit is contained in:
rektdeckard
2020-07-24 14:36:05 -04:00
parent a29d52e36b
commit f14ff1ea4f
3 changed files with 5 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
"@types/react-list": "^0.8.5", "@types/react-list": "^0.8.5",
"@types/react-virtualized": "^9.21.10", "@types/react-virtualized": "^9.21.10",
"framer-motion": "^2.1.0", "framer-motion": "^2.1.0",
"phosphor-react": "^0.1.2", "phosphor-react": "^0.1.6",
"react": "^16.13.1", "react": "^16.13.1",
"react-dom": "^16.13.1", "react-dom": "^16.13.1",
"react-list": "^0.8.15", "react-list": "^0.8.15",
@@ -24,6 +24,7 @@
"typescript": "^3.9.6" "typescript": "^3.9.6"
}, },
"scripts": { "scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start", "start": "react-scripts start",
"build": "react-scripts build", "build": "react-scripts build",
"test": "react-scripts test", "test": "react-scripts test",

View File

@@ -302,7 +302,7 @@ export const icons: Readonly<IconEntry[]> = [
{ {
name: "user-circle", name: "user-circle",
categories: [IconCategory.USERS], categories: [IconCategory.USERS],
tags: ["person", "users", "account", "login", "circle"], tags: ["person", "users", "account", "login", "round"],
Icon: Icon.UserCircle, Icon: Icon.UserCircle,
}, },
{ {

View File

@@ -1,4 +1,4 @@
import { IconProps } from "phosphor-react/dist/lib/Icon"; import { Icon } from "phosphor-react";
export enum IconStyle { export enum IconStyle {
THIN = "thin", THIN = "thin",
@@ -32,7 +32,5 @@ export interface IconEntry {
name: string; name: string;
categories: IconCategory[]; categories: IconCategory[];
tags: string[]; tags: string[];
Icon: React.ForwardRefExoticComponent< Icon: Icon;
IconProps & React.RefAttributes<SVGSVGElement>
>;
} }