mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
#23 made sample lab layout
This commit is contained in:
parent
3aa2d4f609
commit
05b4ed19c6
9 changed files with 123 additions and 2 deletions
22
src/components/lab/LabHero/index.tsx
Normal file
22
src/components/lab/LabHero/index.tsx
Normal file
|
@ -0,0 +1,22 @@
|
|||
import React, { FC } from 'react';
|
||||
import { Placeholder } from '~/components/placeholders/Placeholder';
|
||||
import { Group } from '~/components/containers/Group';
|
||||
import { Icon } from '~/components/input/Icon';
|
||||
import styles from './styles.module.scss';
|
||||
|
||||
interface IProps {}
|
||||
|
||||
const LabHero: FC<IProps> = () => (
|
||||
<Group horizontal className={styles.wrap1}>
|
||||
<div className={styles.star}>
|
||||
<Icon icon="star_full" size={32} />
|
||||
</div>
|
||||
|
||||
<Group>
|
||||
<Placeholder height={20} />
|
||||
<Placeholder height={12} width="100px" />
|
||||
</Group>
|
||||
</Group>
|
||||
);
|
||||
|
||||
export { LabHero };
|
Loading…
Add table
Add a link
Reference in a new issue