# Component/Text/BaseText
> Props: component-text-basetext.props.txt
## Examples
### Alignment
```tsx
{
args: {
as: 'div',
alignment: 'center',
children: '지그재그 파트너센터에 오신 것을 환영합니다!'
}
}
```
### Base
```tsx
{
args: {
children: '지그재그 파트너센터에 오신 것을 환영합니다!'
}
}
```
### Inherit
```tsx
{
render: args =>
부모 스타일:
,
args: {
typography: 'inherit',
children: ' 이 텍스트는 부모의 스타일을 상속받습니다.'
}
}
```
### Nested Base Text
```tsx
{
render: () =>
중첩 사용{` `}
typography inherit
{` `}예시
중첩 사용{` `}
typography 생략 예시
}
```
### Typography
```tsx
{
args: {
typography: 'Heading_24_Bold',
children: '지그재그 파트너센터에 오신 것을 환영합니다!'
}
}
```