// Custom ExternalIcon // Removed the "stroke" property that was being generated by Figma so that it matches designs better /* eslint-disable */ import React from "react"; import { getOverrideProps } from "@aws-amplify/ui-react/internal"; import { Icon, View } from "@aws-amplify/ui-react"; export default function ExternalIcon(props) { const { overrides, ...rest } = props; return ( ); }