mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-04 11:17:02 +02:00
* refactor: update mui packages * refactor: run mui codemods * refactor: format files after codemods * refactor: fix broken types * refactor: clean up theme * refactor: fix broken tests * refactor: replace @mui/styles with tss-react * refactor: move breakpoints into classes for tss * refactor: fix crash on missing feature description * refactor: remove void classNames * refactor: adjust styles to new defaults * refactor: remove broken rollout slider e2e test * refactor: fix duplicate e2e testid * refactor: update makeStyles after rebase * refactor: add missing snapshot after rebase * refactor: fix TableCellSortable focus styles * refactor: use 1.4 as the default line-height * refactor: hide webkit search field icons * refactor: fix select box label * refactor: make AutocompleteBox smaller * refactor: make heading smaller * refactor: fix toast close icon color * refactor: update snapshots * refactor: add missing test event awaits * refactor: fix default button line-height
25 lines
619 B
TypeScript
25 lines
619 B
TypeScript
import { useTheme } from '@mui/material';
|
|
|
|
interface IStrategySeparatorProps {
|
|
text: string;
|
|
}
|
|
|
|
export const StrategySeparator = ({ text }: IStrategySeparatorProps) => {
|
|
const theme = useTheme();
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
color: theme.palette.primary.main,
|
|
padding: '0.1rem 0.25rem',
|
|
border: `1px solid ${theme.palette.primary.main}`,
|
|
borderRadius: '0.25rem',
|
|
fontSize: theme.fontSizes.smallerBody,
|
|
backgroundColor: '#fff',
|
|
}}
|
|
>
|
|
{text}
|
|
</div>
|
|
);
|
|
};
|