1234567891011121314151617181920212223242526 |
- import styled from 'styled-components';
- const style: Record<string, string> = {
- textfield: '',
- checkbox: `
- border-radius: 8px;
- `,
- radio: `
- border-radius: 100%;
- `,
- };
- export const TextBox = styled.div<{ type: string }>`
- width: 100%;
- height: 100%;
- background-color: rgba(51, 190, 219, 0.3);
- font-size: 1.3rem;
- color: rgba(0, 0, 0, 0.5);
- display: flex;
- justify-content: center;
- align-items: center;
- ${(props) => style[props.type]}
- `;
- export default TextBox;
|