Files
medicalalert-web-reloaded/wp/wp-content/plugins/leadin/scripts/shared/UIComponents/UIContainer.ts
2024-09-25 09:25:31 -04:00

10 lines
221 B
TypeScript

import { styled } from '@linaria/react';
interface IUIContainerProps {
textAlign?: string;
}
export default styled.div<IUIContainerProps>`
text-align: ${props => (props.textAlign ? props.textAlign : 'inherit')};
`;