react-code-dataset / wp-calypso /client /sites /settings /sftp-ssh /sftp-card-loading-placeholder.tsx
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { LoadingPlaceholder } from '@automattic/components';
import styled from '@emotion/styled';
const PlaceholderGroup = styled.div( {
display: 'flex',
flexDirection: 'column',
gap: '0.5em',
} );
const ParagraphPlaceholder = styled( LoadingPlaceholder )( {
maxWidth: '100%',
} );
const LinkPlaceholder = styled( ParagraphPlaceholder )( { width: 290, marginBottom: 30 } );
const LabelPlaceholder = styled( ParagraphPlaceholder )( { width: 50 } );
const InputPlaceholder = styled( ParagraphPlaceholder )( {
width: '80%',
height: 36,
marginBottom: 20,
} );
export function SftpCardLoadingPlaceholder() {
return (
<PlaceholderGroup>
<ParagraphPlaceholder />
<LinkPlaceholder />
{ [ 1, 2 ].map( ( i ) => (
<PlaceholderGroup key={ i }>
<LabelPlaceholder />
<InputPlaceholder />
</PlaceholderGroup>
) ) }
<LabelPlaceholder />
<ParagraphPlaceholder />
<LinkPlaceholder />
</PlaceholderGroup>
);
}