diff --git a/src/common/components/icons/phosphor/PhListChecks.tsx b/src/common/components/icons/phosphor/PhListChecks.tsx new file mode 100644 index 000000000..bc6740d44 --- /dev/null +++ b/src/common/components/icons/phosphor/PhListChecks.tsx @@ -0,0 +1,14 @@ +import * as React from 'react'; + +import { SvgIcon, SvgIconProps } from '@mui/joy'; + +/* + * Source: 'https://phosphoricons.com/' - list-checks (regular) + */ +export function PhListChecks(props: SvgIconProps) { + return ( + + + + ); +}