$font-stack: Helvetica, sans-serif
$primary-color: #333
body
font: 100% $font-stack
color: $primary-color
$font-stack: Helvetica, sans-serif;
$primary-color: #333;
body {
font: 100% $font-stack;
color: $primary-color;
}
import React from 'react'
import './Button.scss'
function Button({ children }) {
return <button className="Button">{children}</button>
}
export default Button
$blue: #228be6; // 주석 선언
.Button {
color: white;
font-weight: bold;
outline: none;
border-radius: 4px;
cursor: pointer;
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1rem;
background: $blue; // 주석 사용
&:hover {
background: lighten($blue, 10%); // 색상 10% 밝게
}
&:active {
background: darken($blue, 10%); // 색상 10% djenqrp
}
}
import './App.css'
import Button from './components/Button'
function App() {
return (
<div className="App">
<div className="buttons">
<Button>BUTTON</Button>
</div>
</div>
)
}
export default App
import React from 'react'
import './Button.scss'
function Button({ children, size }) {
return <button className={['Button', size].join(' ')}>{children}</button>
}
Button.defaultProps = {
size: 'medium',
}
export default Button
className={['Button', size].join(' ')}
classNmae={`Button ${size}`}
classNames('foo', 'bar'); // => 'foo bar'
classNames('foo', { bar: true }); // => 'foo bar'
classNames({ 'foo-bar': true }); // => 'foo-bar'
classNames({ 'foo-bar': false }); // => ''
classNames({ foo: true }, { bar: true }); // => 'foo bar'
classNames({ foo: true, bar: true }); // => 'foo bar'
classNames(['foo', 'bar']); // => 'foo bar'
// 동시에 여러개의 타입으로 받아올 수 도 있습니다.
classNames('foo', { bar: true, duck: false }, 'baz', { quux: true }); // => 'foo bar baz quux'
// false, null, 0, undefined 는 무시됩니다.
classNames(null, false, 'bar', undefined, 0, 1, { baz: null }, ''); // => 'bar 1'
$ npm install classnames
import classNames from 'classnames'
import React from 'react'
import './Button.scss'
function Button({ children, size }) {
return <button className={classNames('Button', size)}>{children}</button>
}
Button.defaultProps = {
size: 'medium',
}
export default Button
$blue: #228be6; // 주석 선언
.Button {
display: inline-flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
outline: none;
border-radius: 4px;
cursor: pointer;
// 사이즈 관리
&.large {
height: 3rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1.25rem;
}
&.medium {
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1rem;
}
&.small {
height: 1.75rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 0.875rem;
}
background: $blue; // 주석 사용
&:hover {
background: lighten($blue, 10%); // 색상 10% 밝게
}
&:active {
background: darken($blue, 10%); // 색상 10% djenqrp
}
}
import './App.css'
import Button from './components/Button'
function App() {
return (
<div className="App">
<div className="buttons">
<Button size="large">BUTTON</Button>
<Button>BUTTON</Button>
<Button size="small">BUTTON</Button>
</div>
</div>
)
}
export default App
$blue: #228be6; // 주석 선언
.Button {
display: inline-flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
outline: none;
border-radius: 4px;
cursor: pointer;
// 사이즈 관리
&.large {
height: 3rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1.25rem;
}
&.medium {
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1rem;
}
&.small {
height: 1.75rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 0.875rem;
}
background: $blue; // 주석 사용
&:hover {
background: lighten($blue, 10%); // 색상 10% 밝게
}
&:active {
background: darken($blue, 10%); // 색상 10% djenqrp
}
& + & {
margin-left: 1rem;
}
}
$blue: #228be6; // 주석 선언
$gray: #495057;
$pink: #f06595;
.Button {
display: inline-flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
outline: none;
border-radius: 4px;
cursor: pointer;
// 사이즈 관리
&.large {
height: 3rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1.25rem;
}
&.medium {
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1rem;
}
&.small {
height: 1.75rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 0.875rem;
}
// 색상 관리
&.blue {
background: $blue; // 주석 사용
&:hover {
background: lighten($blue, 10%); // 색상 10% 밝게
}
&:active {
background: darken($blue, 10%); // 색상 10% 어둡게
}
}
&.gray {
background: $gray; // 주석 사용
&:hover {
background: lighten($gray, 10%); // 색상 10% 밝게
}
&:active {
background: darken($gray, 10%); // 색상 10% 어둡게
}
}
&.pink {
background: $pink; // 주석 사용
&:hover {
background: lighten($pink, 10%); // 색상 10% 밝게
}
&:active {
background: darken($pink, 10%); // 색상 10% 어둡게
}
}
& + & {
margin-left: 1rem;
}
}
$blue: #228be6; // 주석 선언
$gray: #495057;
$pink: #f06595;
@mixin button-color($color) {
background: $color;
&:hover {
background: lighten($color, 10%);
}
&:active {
background: darken($color, 10%);
}
}
.Button {
display: inline-flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
outline: none;
border-radius: 4px;
cursor: pointer;
// 사이즈 관리
&.large {
height: 3rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1.25rem;
}
&.medium {
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1rem;
}
&.small {
height: 1.75rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 0.875rem;
}
// 색상 관리
&.blue {
@include button-color($blue);
}
&.gray {
@include button-color($gray);
}
&.pink {
@include button-color($pink);
}
& + & {
margin-left: 1rem;
}
}
import './App.scss'
import Button from './components/Button'
function App() {
return (
<div className="App">
<div className="buttons">
<Button size="large">BUTTON</Button>
<Button>BUTTON</Button>
<Button size="small">BUTTON</Button>
</div>
<div className="buttons">
<Button size="large" color="gray">
BUTTON
</Button>
<Button color="gray">BUTTON</Button>
<Button size="small" color="gray">
BUTTON
</Button>
</div>
<div className="buttons">
<Button size="large" color="pink">
BUTTON
</Button>
<Button color="pink">BUTTON</Button>
<Button size="small" color="pink">
BUTTON
</Button>
</div>
</div>
)
}
export default App
import classNames from 'classnames'
import React from 'react'
import './Button.scss'
function Button({ children, size, color, outline }) {
return <button className={classNames('Button', size, color, { outline })}>{children}</button>
}
Button.defaultProps = {
size: 'medium',
color: 'blue',
}
export default Button
$blue: #228be6; // 주석 선언
$gray: #495057;
$pink: #f06595;
@mixin button-color($color) {
background: $color;
&:hover {
background: lighten($color, 10%);
}
&:active {
background: darken($color, 10%);
}
&.outline {
color: $color;
background: none;
border: 1px solid $color;
&:hover {
background: $color;
color: white;
}
}
}
.Button {
display: inline-flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
outline: none;
border-radius: 4px;
cursor: pointer;
// 사이즈 관리
&.large {
height: 3rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1.25rem;
}
&.medium {
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1rem;
}
&.small {
height: 1.75rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 0.875rem;
}
// 색상 관리
&.blue {
@include button-color($blue);
}
&.gray {
@include button-color($gray);
}
&.pink {
@include button-color($pink);
}
& + & {
margin-left: 1rem;
}
}
<div className="buttons">
<Button size="large" color="blue" outline>
BUTTON
</Button>
<Button color="gray" outline>
BUTTON
</Button>
<Button size="small" color="pink" outline>
BUTTON
</Button>
</div>
import classNames from 'classnames'
import React from 'react'
import './Button.scss'
function Button({ children, size, color, outline, fullWidth }) {
return <button className={classNames('Button', size, color, { outline, fullWidth })}>{children}</button>
}
Button.defaultProps = {
size: 'medium',
color: 'blue',
}
export default Button
$blue: #228be6; // 주석 선언
$gray: #495057;
$pink: #f06595;
@mixin button-color($color) {
background: $color;
&:hover {
background: lighten($color, 10%);
}
&:active {
background: darken($color, 10%);
}
&.outline {
color: $color;
background: none;
border: 1px solid $color;
&:hover {
background: $color;
color: white;
}
}
}
.Button {
display: inline-flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
outline: none;
border-radius: 4px;
cursor: pointer;
// 사이즈 관리
&.large {
height: 3rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1.25rem;
}
&.medium {
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 1rem;
}
&.small {
height: 1.75rem;
padding-left: 1rem;
padding-right: 1rem;
font-size: 0.875rem;
}
// 색상 관리
&.blue {
@include button-color($blue);
}
&.gray {
@include button-color($gray);
}
&.pink {
@include button-color($pink);
}
& + & {
margin-left: 1rem;
}
&.fullWidth {
width: 100%;
justify-content: center;
& + & {
margin-left: 0;
margin-top: 1rem;
}
}
}
<div className="buttons">
<Button size="large" fullWidth>
BUTTON
</Button>
<Button size="large" color="gray" fullWidth>
BUTTON
</Button>
<Button size="large" color="pink" fullWidth>
BUTTON
</Button>
</div>
import classNames from 'classnames'
import React from 'react'
import './Button.scss'
function Button({ children, size, color, outline, fullWidth, onClick }) {
return (
<button className={classNames('Button', size, color, { outline, fullWidth })} onClick={onClick}>
{children}
</button>
)
}
Button.defaultProps = {
size: 'medium',
color: 'blue',
}
export default Button
import classNames from 'classnames'
import React from 'react'
import './Button.scss'
function Button({ children, size, color, outline, fullWidth, onClick, onMouseMove }) {
return (
<button className={classNames('Button', size, color, { outline, fullWidth })} onClick={onClick} onMouseMove={onMouseMove}>
{children}
</button>
)
}
Button.defaultProps = {
size: 'medium',
color: 'blue',
}
export default Button
import classNames from 'classnames'
import React from 'react'
import './Button.scss'
function Button({ children, size, color, outline, fullWidth, ...rest }) {
return (
<button className={classNames('Button', size, color, { outline, fullWidth })} {...rest}>
{children}
</button>
)
}
Button.defaultProps = {
size: 'medium',
color: 'blue',
}
export default Button
<button>
태그에 {...rest}
하면 rest 안에 있는 객체 안에 있는 값들 모두 <button>
태그에 설정import './App.scss'
import Button from './components/Button'
function App() {
return (
<div className="App">
<div className="buttons">
<Button size="large" onClick={() => console.log('클릭!')}>
BUTTON
</Button>
<Button>BUTTON</Button>
<Button size="small">BUTTON</Button>
</div>
<div className="buttons">
<Button size="large" color="gray">
BUTTON
</Button>
<Button color="gray">BUTTON</Button>
<Button size="small" color="gray">
BUTTON
</Button>
</div>
<div className="buttons">
<Button size="large" color="pink">
BUTTON
</Button>
<Button color="pink">BUTTON</Button>
<Button size="small" color="pink">
BUTTON
</Button>
</div>
<div className="buttons">
<Button size="large" color="blue" outline>
BUTTON
</Button>
<Button color="gray" outline>
BUTTON
</Button>
<Button size="small" color="pink" outline>
BUTTON
</Button>
</div>
<div className="buttons">
<Button size="large" fullWidth>
BUTTON
</Button>
<Button size="large" color="gray" fullWidth>
BUTTON
</Button>
<Button size="large" color="pink" fullWidth>
BUTTON
</Button>
</div>
</div>
)
}
export default App