import { styled } from 'styled-components'; import { cv } from '../..'; export type StyledRadioGroupProps = { $width: string; $gap: string; }; export const StyledRadioGroup = styled.div` display: flex; flex-direction: column; width: ${(props) => props.$width}; gap: ${(props) => props.$gap}; `; export const StyledRadioGroupLabel = styled.div` color: ${cv.gray600}; font-size: 12px; `;