66 lines
1.6 KiB
JavaScript
66 lines
1.6 KiB
JavaScript
// import React from "react";
|
|
import styled from "styled-components";
|
|
const StyledWrapper = styled.div`
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 50px;
|
|
left: 0;
|
|
padding: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
color: #333;
|
|
background: #fff;
|
|
/* gap: 20px; */
|
|
border: 1px solid #e5e7eb;
|
|
box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.1),
|
|
0px 2px 4px -2px rgba(16, 24, 40, 0.06);
|
|
border-radius: 25px;
|
|
.txt {
|
|
padding: 8px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
.btns {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
.btn {
|
|
color: #fff;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
padding: 8px 14px;
|
|
background: #1fe1f9;
|
|
border: 1px solid #1fe1f9;
|
|
box-sizing: border-box;
|
|
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
border-radius: 25px;
|
|
&.reset {
|
|
background: none;
|
|
color: #667085;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
export default function SaveTip({ saveHandler, resetHandler }) {
|
|
return (
|
|
<StyledWrapper className="animate__animated animate__flipInX animate__faster">
|
|
<span className="txt">You have unsaved changes!</span>
|
|
<div className="btns">
|
|
<button className="btn reset" onClick={resetHandler}>
|
|
Reset
|
|
</button>
|
|
<button className="btn" onClick={saveHandler}>
|
|
Save Changes
|
|
</button>
|
|
</div>
|
|
</StyledWrapper>
|
|
);
|
|
}
|