| .. | |||||
| UIAlert.tsx | |||||
| UIButton.ts | |||||
| UIContainer.ts | |||||
| UIOverlay.ts | |||||
| UISpacer.ts | |||||
| UISpinner.tsx | |||||
| colors.ts |
import { styled } from '@linaria/react';
interface IUIContainerProps {
textAlign?: string;
}
export default styled.div<IUIContainerProps>`
text-align: ${props => (props.textAlign ? props.textAlign : 'inherit')};
`;
| .. | |||||
| UIAlert.tsx | |||||
| UIButton.ts | |||||
| UIContainer.ts | |||||
| UIOverlay.ts | |||||
| UISpacer.ts | |||||
| UISpinner.tsx | |||||
| colors.ts |