mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
14 lines
308 B
TypeScript
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
|