1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00
unleash.unleash/frontend/src/component/context/ContectFormChip/ContextFormChipList.tsx
Mateusz Kwasniewski 674e36b40b
Styled components batch4.1 (#2812)
Co-authored-by: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com>
2023-01-05 09:45:39 +01:00

15 lines
356 B
TypeScript

import React from 'react';
import { styled } from '@mui/material';
const StyledContainer = styled('ul')(({ theme }) => ({
listStyleType: 'none',
display: 'flex',
flexWrap: 'wrap',
gap: theme.spacing(1),
padding: 0,
margin: 0,
marginBottom: '1rem !important',
}));
export const ContextFormChipList: React.FC = StyledContainer;