From aacb4349e99d9116940a89645c2cfefc8b093a96 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Wed, 6 May 2026 01:44:09 -0700 Subject: [PATCH] PhListChecks: add icon --- .../components/icons/phosphor/PhListChecks.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/common/components/icons/phosphor/PhListChecks.tsx 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 ( + + + + ); +}