import React from 'react' import styled from 'styled-components' import { space } from '../../../_utils/branding' import { TextFieldProps } from '../../../textField' import { BaseSection, BaseSectionProps } from '../baseSection' export type TextFieldsSectionProps = BaseSectionProps & Readonly<{ children: Array> className?: string tagName?: string }> /** * Inputs Section: display two or more TextFieldProps on a row. */ const TextFieldsSectionDefinition = (props: TextFieldsSectionProps) => { const { className, children, tagName = 'div' } = props return ( {children} ) } // Keeping the style here to be able to have a dynamic tag on BaseSection (and not style.div) export const TextFieldsSection = styled(TextFieldsSectionDefinition)` & .kirk-textfields-section-content { display: flex; justify-content: space-between; } & .kirk-textfields-section-content .kirk-textField { flex-grow: 1; flex: 1; } & .kirk-textfields-section-content .kirk-textField:first-child { padding-right: ${space.s} !important; } & .kirk-textfields-section-content .kirk-textField:last-child { padding-left: ${space.s} !important; } `