Current Path : /proc/self/cwd/wp-contentn/plugins/leadin/scripts/shared/UIComponents/ |
Current File : //proc/self/cwd/wp-contentn/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')}; `;