Files
metabuilder/fakemui/icons/Level.tsx
2025-12-30 19:59:02 +00:00

14 lines
308 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
/**
* Level icon - represents permission level
*/
export const Level = (props: IconProps) => (
<Icon {...props}>
<path d="M12 3L1 9l11 6 9-4.91V17h2V9L12 3zm0 13.27L5 13.5v4l7 4 7-4v-4l-7 2.77z" />
</Icon>
)
export default Level