Repository URL to install this package:
|
Version:
0.0.0 ▾
|
import React, { FC } from 'react'
import { SushiIcon } from '../icons'
import { LoaderProps } from './types'
export const LogoLoader: FC<LoaderProps> = (props) => {
return <SushiIcon className="animate-heartbeat" {...props} />
}