mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
14 lines
382 B
Java
14 lines
382 B
Java
// Copyright 2000-2021 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
|
|
|
package icons;
|
|
|
|
import com.intellij.openapi.util.IconLoader;
|
|
|
|
import javax.swing.*;
|
|
|
|
public class SdkIcons {
|
|
|
|
public static final Icon Sdk_default_icon = IconLoader.getIcon("/icons/sdk_16.svg", SdkIcons.class);
|
|
|
|
}
|