Lines Matching refs:title
9 { title: 'Android Device', propName: 'android' },
10 { title: 'Android Emulator', propName: 'emulator' },
11 { title: 'iOS Device', propName: 'ios' },
12 { title: 'iOS Simulator', propName: 'simulator' },
13 { title: 'Web', propName: 'web' },
19 function getInfo(isSupported: IsSupported, { title }: Platform) {
23 title: `${title} is supported`,
32 title: `${title} support is pending`,
38 title: `${title} is not supported`,
43 title?: string;
51 type PlatformProps = Omit<Props, 'title'>;
55 <H4 className="mb-1">{props.title || 'Platform Compatibility'}</H4>
59 {platforms.map(({ title }) => (
60 <HeaderCell key={title}>{title}</HeaderCell>
68 key={platform.title}