mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 02:07:50 +08:00
11 lines
348 B
Java
11 lines
348 B
Java
// Copyright 2000-2019 JetBrains s.r.o. 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 ActionBasicsIcons {
|
|
public static final Icon Sdk_default_icon = IconLoader.getIcon("/icons/sdk_16.svg");
|
|
}
|