bigbuffet-rw/app/soapbox/features/placeholder/components/placeholder_display_name.tsx
2022-05-01 12:45:37 -05:00

23 lines
673 B
TypeScript

import React from 'react';
import { randomIntFromInterval, generateText } from '../utils';
interface IPlaceholderDisplayName {
maxLength: number,
minLength: number,
}
/** Fake display name to show when data is loading. */
const PlaceholderDisplayName: React.FC<IPlaceholderDisplayName> = ({ minLength, maxLength }) => {
const length = randomIntFromInterval(maxLength, minLength);
const acctLength = randomIntFromInterval(maxLength, minLength);
return (
<div className='flex flex-col text-slate-200 dark:text-slate-700'>
<p>{generateText(length)}</p>
<p>{generateText(acctLength)}</p>
</div>
);
};
export default PlaceholderDisplayName;