import React from 'react'
const SmallText = ({...props}) => {
return(
<div>
<p>{props.children}</p>
</div>
)
}
export default SmallText;