/* * Copyright (c) Facebook, Inc. and its affiliates. */ import {memo} from 'react'; export const IconCanary = memo< JSX.IntrinsicElements['svg'] & {title?: string; size?: 's' | 'md'} >(function IconCanary( {className, title, size} = { className: undefined, title: undefined, size: 'md', } ) { return ( {title && {title}} ); });