diff --git a/icons/react/Instances16Icon.tsx b/icons/react/Instances16Icon.tsx index 376bd08..6b0cbdc 100644 --- a/icons/react/Instances16Icon.tsx +++ b/icons/react/Instances16Icon.tsx @@ -5,33 +5,14 @@ * * Copyright Oxide Computer Company */ -import { SVGProps } from 'react' +import { Svg } from './Svg' -interface SVGRProps { - title?: string - titleId?: string -} -const Instances16Icon = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - ( + - {title ? {title} : null} - - + /> ) export default Instances16Icon diff --git a/icons/react/Instances24Icon.tsx b/icons/react/Instances24Icon.tsx index b3723a7..7fc2bf3 100644 --- a/icons/react/Instances24Icon.tsx +++ b/icons/react/Instances24Icon.tsx @@ -5,33 +5,14 @@ * * Copyright Oxide Computer Company */ -import { SVGProps } from 'react' +import { Svg } from './Svg' -interface SVGRProps { - title?: string - titleId?: string -} -const Instances24Icon = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - ( + - {title ? {title} : null} - - + /> ) export default Instances24Icon