You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
537 B

import React from 'react'
import { IconFire, IconMoped } from '../../component/Icon';
import Typography from '../../component/Typography';
export const MottoBlock: React.FC = () => {
return (
<div className="title_header">
<div className="title_header_box">
<p className={'icon_moped '}/> <Typography> Горячая пицца для каждого </Typography>
</div>
<div className="title_header_box">
<IconMoped/> <Typography>Долетим за 35 минут </Typography>
</div>
</div>
);
};