This commit is contained in:
2025-02-12 18:29:27 +09:00
commit 513ea114cc
290 changed files with 84274 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import styled, { css } from 'styled-components';
const CDivider = () => {
return (
<Divider>|</Divider>
);
};
const Divider = styled.span`
margin: 0 8px;
color: RGB(217,217,217);
padding: 4px 0;
`;
export default CDivider;