Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const Education = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Education(props, ref) {
return (
<Icon {...props} name="Education">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M5.63636 13.0489V16.6044L12 20L18.3636 16.6044V13.0489L12 16.4444L5.63636 13.0489ZM12 4L2 9.33333L12 14.6667L20.1818 10.3022V16.4444H22V9.33333L12 4Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
Education.displayName = 'Education'
export default Education
|