Skip to content

Instantly share code, notes, and snippets.

@aiwas
Created March 21, 2023 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aiwas/94fda86f09328ef29339e19da55e85db to your computer and use it in GitHub Desktop.
Save aiwas/94fda86f09328ef29339e19da55e85db to your computer and use it in GitHub Desktop.
紛争を開始
import styled from "styled-components";
export function ButtonOpenDisupute() {
const Button = styled.button`
min-width: 150px;
height: 32px;
padding: 3px 12px;
background-color: white;
border: 1px solid #999999;
border-radius: 16px;
font-size: 14px;
line-height: 24px;
font-weight: bold;
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
&:hover {
border-color: #ff472e;
color: #ff472e;
}
`;
return (
<Button>
<span>紛争を開始</span>
</Button>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment