import React from 'react';
import { Skeleton } from 'common/components/skeleton';

interface Props {
  className?: string;
}

export const TitleLoader = React.memo(({ className }: Props) => (
  <Skeleton className={className} width={300} height={35}>
    <rect x="0" y="0" rx="0" ry="0" width="300" height="35" />
  </Skeleton>
));
