import React from 'react';
import styled from 'styled-components';
interface Props {
backgroundColor?: string;
children: React.ReactNode;
textColor?: string;
}
interface Style {
backgroundColor?: string;
textColor?: string;
}
const DrawerItem = ({ backgroundColor = '#fff', children, textColor = '#000' }: Props) => {
return (
-
{children}
);
};
export default DrawerItem;
/* styles */
const Item = styled.span