({ size, align, ...props })
| 25 | type Props = PropsWithChildren<VariantProps<typeof variants>>; |
| 26 | |
| 27 | export const Body: FC<Props> = ({ size, align, ...props }) => <p className={variants({ size, align })} {...props} />; |
nothing calls this directly
no outgoing calls
no test coverage detected