mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
26 lines
859 B
TypeScript
26 lines
859 B
TypeScript
import React from 'react';
|
|
|
|
import Frame from '../../placeholders/Frame';
|
|
import Rectangle from '../../placeholders/Rectangle';
|
|
|
|
const Cover = () => {
|
|
return (
|
|
<Frame>
|
|
<div className="h-100 flex flex-column items-center justify-center">
|
|
<div className="flex items-center justify-between pa2 w-100">
|
|
<div className="b--black-30 ba br2 flex flex-row items-center pa1 w-40">
|
|
<div className="mr1"><</div>
|
|
<Rectangle />
|
|
</div>
|
|
<div className="b--black-30 ba br2 flex flex-row items-center pa1 w-40">
|
|
<Rectangle />
|
|
<div className="ml1">></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Frame>
|
|
);
|
|
};
|
|
|
|
export default Cover;
|