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.
38 lines
569 B
38 lines
569 B
/* |
|
* Copyright (c) 2020 The ZMK Contributors |
|
* |
|
* SPDX-License-Identifier: CC-BY-NC-SA-4.0 |
|
*/ |
|
|
|
export default [ |
|
{ |
|
key: "windows", |
|
className: "windows", |
|
heading: "W", |
|
title: "Windows", |
|
}, |
|
{ |
|
key: "linux", |
|
className: "linux", |
|
heading: "L", |
|
title: "Linux", |
|
}, |
|
{ |
|
key: "android", |
|
className: "android", |
|
heading: "A", |
|
title: "Android", |
|
}, |
|
{ |
|
key: "macos", |
|
className: "macos", |
|
heading: "m", |
|
title: "macOS", |
|
}, |
|
{ |
|
key: "ios", |
|
className: "ios", |
|
heading: "i", |
|
title: "iOS", |
|
}, |
|
];
|
|
|