pomerium/ui/src/components/PersonIcon.tsx
Caleb Doxsey 2824faecbf
frontend: react+mui (#3004)
* mui v5 wip

* wip

* wip

* wip

* use compressor for all controlplane endpoints

* wip

* wip

* add deps

* fix authenticate URL

* fix test

* fix test

* fix build

* maybe fix build

* fix integration test

* remove image asset test

* add yarn.lock
2022-02-07 08:47:58 -07:00

10 lines
273 B
TypeScript

import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
import React, { FC } from "react";
import { User } from "react-feather";
export const PersonIcon: FC<SvgIconProps> = (props) => (
<SvgIcon {...props}>
<User />
</SvgIcon>
);
export default PersonIcon;