16 lines
288 B
TypeScript
16 lines
288 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const Column = styled.div`
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
gap: 8px;
|
|
margin-bottom: 16px;
|
|
`;
|
|
|
|
export const NameField = styled.div`
|
|
flex-grow: 1;
|
|
`;
|
|
|
|
export const CustomParamsHeading = styled.h4`
|
|
font-weight: 500;
|
|
`;
|