mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-11-05 02:17:27 +03:00
* fix(deps): update react monorepo * Updates * Update * Update * Update * Updates * Updates * Update * Remove usages of react-test-renderer * Fix --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
31 lines
682 B
TypeScript
31 lines
682 B
TypeScript
import * as React from 'react';
|
|
|
|
export type UListProps = React.HTMLAttributes<HTMLUListElement>;
|
|
|
|
export function UList(props: UListProps): React.JSX.Element {
|
|
return (
|
|
<ul
|
|
{...props}
|
|
css={(theme) => ({
|
|
listStyle: 'none',
|
|
padding: '0 0 0 1em',
|
|
color: theme.ULIST_COLOR,
|
|
'& > li': {
|
|
listStyle: 'none',
|
|
},
|
|
'& > li::before': {
|
|
content: '"\\2022"',
|
|
display: 'inline-block',
|
|
paddingRight: '0.5em',
|
|
color: theme.ULIST_DISC_COLOR,
|
|
fontSize: '0.8em',
|
|
},
|
|
|
|
'& strong': {
|
|
color: theme.ULIST_STRONG_COLOR,
|
|
},
|
|
})}
|
|
/>
|
|
);
|
|
}
|