mirror of
https://github.com/strapi/strapi.git
synced 2025-08-16 12:47:53 +00:00
19 lines
326 B
JavaScript
19 lines
326 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const RegenerateButton = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 40px;
|
|
height: 32px;
|
|
background-color: #fafafb;
|
|
z-index: 10;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
background-color: #aed4fb;
|
|
}
|
|
`;
|
|
|
|
export default RegenerateButton;
|