mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-23 10:56:28 +02:00
disable single attribute per line
This commit is contained in:
@@ -16,20 +16,10 @@ export const Spinner = ({ ...props }: SpinnerProps) => {
|
||||
if (props.container) {
|
||||
return (
|
||||
<Center className={styles.container}>
|
||||
<SpinnerIcon
|
||||
className={styles.icon}
|
||||
color={props.color}
|
||||
size={props.size}
|
||||
/>
|
||||
<SpinnerIcon className={styles.icon} color={props.color} size={props.size} />
|
||||
</Center>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<SpinnerIcon
|
||||
className={styles.icon}
|
||||
color={props.color}
|
||||
size={props.size}
|
||||
/>
|
||||
);
|
||||
return <SpinnerIcon className={styles.icon} color={props.color} size={props.size} />;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user