diff --git a/fakemui/icons/Gate.tsx b/fakemui/icons/Gate.tsx index cc3abcf26..2a5d3a1b7 100644 --- a/fakemui/icons/Gate.tsx +++ b/fakemui/icons/Gate.tsx @@ -1,14 +1,11 @@ -import React from 'react'; -import { SvgIcon, SvgIconProps } from '../core/SvgIcon'; +import React from 'react' +import { Icon, IconProps } from './Icon' /** * Gate icon - represents access control/auth gate */ -export const Gate = React.forwardRef((props, ref) => ( - +export const Gate = (props: IconProps) => ( + - -)); - -Gate.displayName = 'Gate'; -export default Gate; + +)