Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export default function FormSkeleton() {
return (
<div aria-busy="">
<div>
</div>
<div>
<div>
</div>
</div>
</div>
);
export function FacetedSearchIcon({ active, loading, onClick }) {
const { t } = useTranslation(I18N_DOMAIN_FACETED_SEARCH);
if (loading) {
return ;
}
return (
onClick(event)}
/>
);
}
export default function FormSkeleton() {
return (
<div aria-busy="">
<div>
</div>
<div>
<div>
</div>
</div>
</div>
);
}