mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-28 18:06:34 +02:00
* 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
10 lines
273 B
TypeScript
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;
|