diff --git a/src/components/Common/Button.jsx b/src/components/Common/Button.jsx index d4be612..5725bc5 100644 --- a/src/components/Common/Button.jsx +++ b/src/components/Common/Button.jsx @@ -1,20 +1,12 @@ -import styled from "styled-components"; +import styled from 'styled-components'; export const ButtonStyle = styled.button` width: ${(props) => props.width}; height: ${(props) => props.height}; padding: ${(props) => props.padding}; - box-sizing: border-box; color: ${(props) => props.color}; font-size: ${(props) => props.fontsize}; text-align: center; background-color: ${(props) => props.bg}; border-radius: ${(props) => props.br}; `; - -// //예시 -// -// -// 다음 -// -// ;