All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.themify.icons.ThemifyIcon Maven / Gradle / Ivy

There is a newer version: 0.66.0.1
Show newest version
package com.jwebmp.plugins.themify.icons;

import com.jwebmp.core.base.html.Span;
import com.jwebmp.core.base.html.attributes.NoAttributes;
import com.jwebmp.core.base.interfaces.IComponentHierarchyBase;

/**
 * Creates a span that will contain this icon as a class name
 */
public class ThemifyIcon
		extends Span
{
	/**
	 * Creates the span for the given icon
	 *
	 * @param icon
	 * 		The icon to use
	 */
	public ThemifyIcon(ThemifyIcons icon)
	{
		this();
		addClass(icon);
	}

	/**
	 * Creates an empty span with no icon, use the other constructor
	 */
	public ThemifyIcon()
	{
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy