import { styled as n } from "styled-components";
const l = n.li`
list-style: none;
display: flex;
align-items: center;
width: 100%;
justify-content: ${({ $aligned: t }) => t};
padding: ${({ theme: t, $sizeC: i }) => i && t.spacing[i]};
`;
export {
l as FancyLiItem
};