# 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: { kind: 'inherit', children: ' 이 텍스트는 부모의 스타일을 상속받습니다.' } } ``` ### Kind ```tsx { args: { kind: 'Heading_24_Bold', children: '지그재그 파트너센터에 오신 것을 환영합니다!' } } ``` ### Nested Base Text ```tsx { render: () => 중첩 사용{` `} kind inherit {` `}예시 중첩 사용{` `} kind 생략 예시 } ```