Add basic VT UI design

This commit is contained in:
André Wahlberg
2020-11-20 16:24:36 +01:00
parent f95d78721f
commit 4bcd512374
15 changed files with 291 additions and 14 deletions

View File

@ -1,13 +1,17 @@
import './css/BottomMenu.css';
import React, { Component } from 'react';
import './css/BottomMenu.css';
import ticketsIcon from '../img/tickets.svg';
import buyTicketsIcon from '../img/tickets+.svg';
import travelIcon from '../img/tram.svg';
import BottomMenuButton from './BottomMenuButton';
class BottomMenu extends Component {
render() {
return (
<div id="bottomMenu">
<button>Biljetter</button>
<button>Köp biljett</button>
<button>Reseplanering</button>
<BottomMenuButton label="Biljetter" icon={ticketsIcon}/>
<BottomMenuButton label="Köp biljett" icon={buyTicketsIcon}/>
<BottomMenuButton label="Reseplanering" icon={travelIcon}/>
</div>
);
}