Improve placeholder style
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
f705e14d2e
commit
2af77aad8d
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ interface IPlaceholderStatus {
|
|||
}
|
||||
|
||||
/** Fake status to display while data is loading. */
|
||||
const PlaceholderStatus: React.FC<IPlaceholderStatus> = React.memo(({ variant }) => (
|
||||
const PlaceholderStatus: React.FC<IPlaceholderStatus> = React.memo(({ variant = 'rounded' }) => (
|
||||
<div
|
||||
className={clsx({
|
||||
'status-placeholder bg-white black:bg-black dark:bg-primary-900': true,
|
||||
|
|
Loading…
Reference in a new issue