From b806c38653054729ad1dad4ebff2e13bd3bedeab Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 19:57:18 +0000 Subject: [PATCH] code: tsx,icons,gate (1 files) --- fakemui/icons/Gate.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) 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; + +)