Skip to content

Commit

Permalink
[๐ŸŽจ Style] Button ๊ณตํ†ต ์ปดํฌ๋„ŒํŠธ ์„ธํŒ…์ž‘์—… #2
Browse files Browse the repository at this point in the history
  • Loading branch information
dayannne committed Jun 12, 2023
1 parent b80286f commit abe0f6d
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/components/Common/Button.jsx
Original file line number Diff line number Diff line change
@@ -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};
`;

// //์˜ˆ์‹œ
// <ButtonDiv>
// <ButtonStyle type='button' bg='black' width='432px' height='56px' br='4px'>
// ๋‹ค์Œ
// </ButtonStyle>
// </ButtonDiv>;

0 comments on commit abe0f6d

Please sign in to comment.