feat(striker-ui): add styled Divider

main
Tsu-ba-me 2 years ago
parent 449ace0490
commit 512ad7f2d8
  1. 9
      striker-ui/components/Divider.tsx

@ -0,0 +1,9 @@
import { Divider as MUIDivider, styled } from '@mui/material';
import { DIVIDER } from '../lib/consts/DEFAULT_THEME';
const Divider = styled(MUIDivider)({
backgroundColor: DIVIDER,
});
export default Divider;
Loading…
Cancel
Save