diff --git a/packages/template-icons/src/P5Icon.tsx b/packages/template-icons/src/P5Icon.tsx new file mode 100644 index 00000000000..922048ae4d5 --- /dev/null +++ b/packages/template-icons/src/P5Icon.tsx @@ -0,0 +1,26 @@ +import React from 'react'; +import { SVGIcon, ISVGIconProps } from './SVGIcon'; +import { useUniqueId } from './useUniqueId'; + +export const P5Icon: React.FC = ({ ...props }) => { + const id = useUniqueId(); + + return ( + + + + + + + + + + + + ); +}; diff --git a/packages/template-icons/src/index.ts b/packages/template-icons/src/index.ts index 47b8973efdd..2f2b9c812f5 100644 --- a/packages/template-icons/src/index.ts +++ b/packages/template-icons/src/index.ts @@ -32,6 +32,7 @@ import { NestIcon } from './NestIcon'; import { NextIcon } from './NextIcon'; import { NodeIcon } from './NodeIcon'; import { NuxtIcon } from './NuxtIcon'; +import { P5Icon } from './P5Icon'; import { ParcelIcon } from './ParcelIcon'; import { PolymerIcon } from './PolymerIcon'; import { PreactIcon } from './PreactIcon'; @@ -89,6 +90,7 @@ export const ColorIcons = { NextIcon, NodeIcon, NuxtIcon, + P5Icon, ParcelIcon, PolymerIcon, PreactIcon, @@ -147,6 +149,7 @@ export const Icons = { NextIcon, NodeIcon, NuxtIcon, + P5Icon, ParcelIcon, PolymerIcon, PreactIcon, @@ -204,6 +207,7 @@ export { NestIcon } from './NestIcon'; export { NextIcon } from './NextIcon'; export { NodeIcon } from './NodeIcon'; export { NuxtIcon } from './NuxtIcon'; +export { P5Icon } from './P5Icon'; export { ParcelIcon } from './ParcelIcon'; export { PolymerIcon } from './PolymerIcon'; export { PreactIcon } from './PreactIcon';