### Summary

`<Align />` provides textual alignment of elements in a page at different breakpoints.

### Example

- This will align the text to the center at mobile (xs) and right at tablet (m)

```tsx
import { Align } from '@zopauk/react-components';

<Align xs="center" m="right">
  You can save with us if you have tax residency in the UK only. <a href="#">Find out more</a>
</Align>;
```
