Type Alias: StyledProps<T>
StyledProps<
T
> ={ [P in keyof T]: T[P] extends StyleProp<infer I> ? StyledProp<I> : T[P] }
Defined in: types/style.ts:26
Props type that transforms all style properties to support enhanced styling. Converts standard style props to styled props with theme and sizing support.
Type Parameters
T
T
extends object