mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
21 lines
587 B
TypeScript
21 lines
587 B
TypeScript
import React from 'react';
|
|
|
|
import Circle from '../../placeholders/Circle';
|
|
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 pa2">
|
|
<div className="w-100 flex flex-row items-center ba b--black-30 br2 pa1">
|
|
<div className="mr1"><Circle /></div>
|
|
<Rectangle />
|
|
</div>
|
|
</div>
|
|
</Frame>
|
|
);
|
|
};
|
|
|
|
export default Cover;
|