mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +02:00
15 lines
356 B
TypeScript
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;
|