diff --git a/src/common/components/icons/phosphor/PhImageSquare.tsx b/src/common/components/icons/phosphor/PhImageSquare.tsx new file mode 100644 index 000000000..ef346c9b4 --- /dev/null +++ b/src/common/components/icons/phosphor/PhImageSquare.tsx @@ -0,0 +1,14 @@ +import * as React from 'react'; + +import { SvgIcon, SvgIconProps } from '@mui/joy'; + +/* + * Source: 'https://phosphoricons.com/' - image-square + */ +export function PhImageSquare(props: SvgIconProps) { + return ( + + + + ); +} \ No newline at end of file diff --git a/src/common/components/icons/phosphor/PhWrench.tsx b/src/common/components/icons/phosphor/PhWrench.tsx new file mode 100644 index 000000000..c18727efc --- /dev/null +++ b/src/common/components/icons/phosphor/PhWrench.tsx @@ -0,0 +1,14 @@ +import * as React from 'react'; + +import { SvgIcon, SvgIconProps } from '@mui/joy'; + +/* + * Source: 'https://phosphoricons.com/' - wrench + */ +export function PhWrench(props: SvgIconProps) { + return ( + + + + ); +} \ No newline at end of file