import { styled as t } from "styled-components";
const l = t.div`
text-align: ${({ $align: e }) => e ?? "left"};
`, r = t.div`
display: flex;
flex-direction: column;
gap: ${({ theme: e, $spacing: i }) => e.spacing[i]};
`;
export {
l as TitleWrapper,
r as Wrapper
};