Skip to content

Commit

Permalink
TEC-4290: Create the label component and style
Browse files Browse the repository at this point in the history
  • Loading branch information
juninhokaponne committed Apr 9, 2024
1 parent d40374b commit d042992
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/components/PaymentMethods/PaymentMethodsLabel/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { PaymentMethodsContainerStyled } from './style'
import { PaymentMethodsContainerProps } from '../PaymentMethodsContainer/type'

const PaymentMethodsLabel = ({
children,
icon,
}: PaymentMethodsContainerProps) => {
return (
<PaymentMethodsContainerStyled>
{icon && icon}
{children}
</PaymentMethodsContainerStyled>
)
}

export { PaymentMethodsLabel }
14 changes: 14 additions & 0 deletions src/components/PaymentMethods/PaymentMethodsLabel/style.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import styled from 'styled-components'
import { Colors } from '../../../tokens'

const PaymentMethodsContainerStyled = styled.label`
color: ${Colors.light.neutral.neutral500};
font-size: 1rem;
display: flex;
gap: 0.5rem;
align-items: center;
cursor: pointer;
`

export { PaymentMethodsContainerStyled }

0 comments on commit d042992

Please sign in to comment.