2022-04-25 09:39:33 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
2022-04-25 09:48:13 -07:00
|
|
|
const Sonar = () => (
|
2022-04-25 09:39:33 -07:00
|
|
|
<div className='relative'>
|
2022-05-04 11:09:44 -07:00
|
|
|
<div className='relative w-48 h-48'>
|
2022-05-10 12:51:36 -07:00
|
|
|
<div className='animate-sonar-scale-4 absolute top-0 left-0 w-full h-full rounded-full bg-primary-600/25 dark:bg-primary-400/25 opacity-0 pointer-events-none' />
|
|
|
|
<div className='animate-sonar-scale-3 absolute top-0 left-0 w-full h-full rounded-full bg-primary-600/25 dark:bg-primary-400/25 opacity-0 pointer-events-none' />
|
|
|
|
<div className='animate-sonar-scale-2 absolute top-0 left-0 w-full h-full rounded-full bg-primary-600/25 dark:bg-primary-400/25 opacity-0 pointer-events-none' />
|
|
|
|
<div className='animate-sonar-scale-1 absolute top-0 left-0 w-full h-full rounded-full bg-primary-600/25 dark:bg-primary-400/25 opacity-0 pointer-events-none' />
|
2022-05-04 11:09:44 -07:00
|
|
|
|
2022-05-07 13:45:29 -07:00
|
|
|
<div className='absolute top-0 left-0 w-48 h-48 bg-white dark:bg-slate-900 rounded-full' />
|
2022-04-25 09:39:33 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2022-04-19 15:03:28 -07:00
|
|
|
|
2022-04-25 09:48:13 -07:00
|
|
|
export default Sonar;
|