/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. * * OpenCRVS is also distributed under the terms of the Civil Registration * & Healthcare Disclaimer located at http://opencrvs.org/license. * * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. */ import * as React from 'react' import styled from 'styled-components' import { Button, IButtonProps } from './Button' import { PlusTransparent, MinusTransparent } from '../icons' export const StyledButton = styled(Button)` border: none; background: none; height: 40px; width: 40px; display: flex; border-radius: 100%; align-items: center; &:hover { background-color: ${({ theme }) => theme.colors.grey100}; } &:not([data-focus-visible-added]):hover { background-color: ${({ theme }) => theme.colors.grey100}; } &:focus { outline: none; background: ${({ theme }) => theme.colors.yellow}; color: ${({ theme }) => theme.colors.copy}; } &:not([data-focus-visible-added]) { background: none; outline: none; color: ${({ color = '#4C68C1' }) => color}; } &:active:not([data-focus-visible-added]) { outline: none; background: ${({ theme }) => theme.colors.yellow}; color: ${({ theme }) => theme.colors.copy}; } ` export interface IExpansionButtonProps extends IButtonProps { expanded?: boolean } export function ExpansionButton(props: IExpansionButtonProps) { return ( { return props.expanded ? : }} {...props} /> ) }