import React from 'react' export function Spinner({ visible, className, }: { visible: boolean className: string }) { if (!visible) { return null } return ( {/*! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. */} ) }