mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
28 lines
949 B
TypeScript
28 lines
949 B
TypeScript
import React from 'react';
|
|
|
|
import Frame from '../../placeholders/Frame';
|
|
import Circle from '../../placeholders/Circle';
|
|
import Rectangle from '../../placeholders/Rectangle';
|
|
|
|
const Cover: React.FC<{}> = () => {
|
|
return (
|
|
<Frame>
|
|
<div className="h-100 flex flex-column items-center justify-center pa2">
|
|
<div className="b--black-30 ba br-pill flex">
|
|
<div className="b--black-30 br flex items-center justify-center pa2">
|
|
<Circle size={4} />
|
|
</div>
|
|
<div className="b--black-30 br flex items-center justify-center pa2">
|
|
<Circle size={4} />
|
|
</div>
|
|
<div className="flex items-center justify-center pa2">
|
|
<Circle size={4} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Frame>
|
|
);
|
|
};
|
|
|
|
export default Cover;
|