1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-29 04:16:23 +01:00
Files
csslayout/placeholders/Block.tsx
Phuoc Nguyen 37a6729d08 feat: Chip
2022-09-21 08:55:08 +07:00

56 lines
1.5 KiB
TypeScript

import * as React from 'react';
import { random } from '../utils/random';
interface BlockProps {
backgroundColor?: string;
blockHeight?: number;
justify?: string;
numberOfBlocks?: number;
}
const Block: React.FC<BlockProps> = ({
backgroundColor = '#d1d5db',
blockHeight = 4,
justify = 'start',
numberOfBlocks = 1,
}) => {
return (
<div
style={{
display: 'flex',
flexWrap: 'wrap',
justifyContent: justify,
width: '100%',
}}
>
{Array(numberOfBlocks)
.fill(0)
.map((_, i) => {
const s = random(1, 5);
return (
<div
key={i}
style={{
marginBottom: '8px',
marginRight: '8px',
width: `${s * 10}%`,
}}
>
<div
style={{
backgroundColor,
borderRadius: '9999px',
height: `${blockHeight}px`,
width: '100%',
}}
/>
</div>
);
})}
</div>
);
};
export default Block;