modcomms/frontend/components/icons/BestPracticeIcon.tsx
2025-12-18 16:51:27 +00:00

8 lines
698 B
TypeScript
Executable file

import React from 'react';
export const BestPracticeIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}>
<path strokeLinecap="round" strokeLinejoin="round" d="M6.633 10.5c.806 0 1.533-.422 2.031-1.096a.5.5 0 01.838-.195l1.122.957.56-1.107a3.75 3.75 0 015.44-2.323 3.75 3.75 0 011.604 4.078l-2.92 11.23a.75.75 0 01-1.424-.39l-.01-1.353a4.5 4.5 0 00-4.49-4.33H8.25a.75.75 0 01-.75-.75V11.25a.75.75 0 01.75-.75h.383zM10.875 6.75a4.5 4.5 0 00-4.5 4.5v.625c0 .414.336.75.75.75h3.375c.414 0 .75-.336.75-.75V10.5a4.5 4.5 0 00-4.5-4.5h-.375z" />
</svg>
);