Your IP : 216.73.216.1


Current Path : /proc/self/cwd/wp-content/plugins/leadin/scripts/shared/UIComponents/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/leadin/scripts/shared/UIComponents/UIContainer.ts

import { styled } from '@linaria/react';

interface IUIContainerProps {
  textAlign?: string;
}

export default styled.div<IUIContainerProps>`
  text-align: ${props => (props.textAlign ? props.textAlign : 'inherit')};
`;