Files
metabuilder/icons/react/fakemui/Policy.tsx
2026-03-09 22:30:41 +00:00

12 lines
446 B
TypeScript

import { Icon, IconProps } from './Icon'
/**
* Policy icon for policies and rules
*/
export const Policy = (props: IconProps) => (
<Icon {...props}>
<path d="M21 5l-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z"/>
<circle cx="12" cy="12" r="3"/>
</Icon>
)