You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- import { StyleType } from './functions.any';
-
- export * from './functions.any';
-
- /**
- * Fixes the style prop that is passed to a platform generic component based on platform specific
- * format requirements.
- *
- * @param {StyleType} style - The passed style prop to the component.
- * @returns {StyleType}
- */
- export function getFixedPlatformStyle(style?: StyleType | StyleType[]) {
- // There is nothing to do on mobile - yet.
-
- return style ?? {};
- }
|