Playbook logo
14.18.0

Text Align

Global Props

Available in every kit. These are added globally as they are most flexible when developing. *Screen sizes are optional.
Props
textAlign
Screen Size
xs
sm
md
lg
xl
Values
left
right
center
justify
justify-all
start
end
match-parent
initial
inherit
EXAMPLE IN USE
<Title
    text="Default Title"
    textAlign="center"
/>

<Title
    text="Default Title"
    textAlign={{
      xs: "center",
      sm: "left",
      lg: "center",
    }}
/>