add bottom bar
This commit is contained in:
21
app/javascript/pages/assessment/components/BottomBar.tsx
Normal file
21
app/javascript/pages/assessment/components/BottomBar.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import React, { FC, } from "react";
|
||||
import { Button } from "../../../components";
|
||||
|
||||
type Props = {
|
||||
|
||||
}
|
||||
|
||||
export const BottomBar: FC<Props> = () => {
|
||||
return (
|
||||
<div className="fixed bottom-0 bg-white w-full h-16 flex items-center justify-end shadow-lg">
|
||||
<div className="flex gap-6 mx-16">
|
||||
<Button className="w-32">
|
||||
Cancelar
|
||||
</Button>
|
||||
<Button type="primary" className="w-32">
|
||||
Salvar
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user