import React from "react"; import styled from "styled-components/macro"; import { TYPE } from "../../theme"; const Wrapper = styled.button<{ isActive?: boolean; activeElement?: boolean }>` border-radius: 20px; border: none; background: ${({ theme }) => theme.bg1}; display: flex; width: fit-content; cursor: pointer; outline: none; padding: 0.4rem 0.4rem; align-items: center; `; const ToggleElement = styled.span<{ isActive?: boolean; bgColor?: string }>` border-radius: 50%; height: 24px; width: 24px; background-color: ${({ isActive, bgColor, theme }) => isActive ? bgColor : theme.bg4}; :hover { opacity: 0.8; } `; const StatusText = styled(TYPE.main)<{ isActive?: boolean }>` margin: 0 10px; width: 24px; color: ${({ theme, isActive }) => (isActive ? theme.text1 : theme.text3)}; `; export interface ToggleProps { id?: string; isActive: boolean; bgColor: string; toggle: () => void; } export default function ListToggle({ id, isActive, bgColor, toggle, }: ToggleProps) { return ( {isActive && ( ON )} {!isActive && ( OFF )} ); }