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

@@ -302,7 +302,7 @@ export const icons: Readonly<IconEntry[]> = [
{
name: "user-circle",
categories: [IconCategory.USERS],
tags: ["person", "users", "account", "login", "circle"],
tags: ["person", "users", "account", "login", "round"],
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 {
THIN = "thin",
@@ -32,7 +32,5 @@ export interface IconEntry {
name: string;
categories: IconCategory[];
tags: string[];
Icon: React.ForwardRefExoticComponent<
IconProps & React.RefAttributes<SVGSVGElement>
>;
Icon: Icon;
}