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.
18 lines
602 B
18 lines
602 B
import React from 'react'
|
|
import { IconFire, IconMoped } from '../../component/Icon';
|
|
import Typography from '../../component/Typography';
|
|
|
|
const TitleHeader = (props) => {
|
|
return(
|
|
<div className="title_header">
|
|
<div className="title_header_box">
|
|
<IconFire/> <Typography> Горячая пицца для каждого </Typography>
|
|
</div>
|
|
<div className="title_header_box">
|
|
<IconMoped/> <Typography>Долетим за 35 минут </Typography>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default TitleHeader; |