
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );

/**
 * Icon sets for theme "icon" control
 *
 * @filter us_config_assets
 */

return array(
	'fas' => array(
		// used in Icon Picker control UI
		'set_name' => 'Font Awesome Solid',
		'set_url' => 'https://fontawesome.com/icons?s=solid',
		// used in generating CSS styles
		'font_family' => 'fontawesome',
		'font_weight' => '900',
		'font_file_name' => 'fa-solid-900',
		'css_file_name' => 'font-awesome',
	),
	'far' => array(
		'set_name' => 'Font Awesome Regular',
		'set_url' => 'https://fontawesome.com/icons?s=regular',
		'font_family' => 'fontawesome',
		'font_weight' => '400',
		'font_file_name' => 'fa-regular-400',
		'css_file_name' => 'font-awesome',
	),
	'fal' => array(
		'set_name' => 'Font Awesome Light',
		'set_url' => 'https://fontawesome.com/icons?s=light',
		'font_family' => 'fontawesome',
		'font_weight' => '300',
		'font_file_name' => 'fa-light-300',
		'css_file_name' => 'font-awesome',
	),
	'fad' => array(
		'set_name' => 'Font Awesome Duotone',
		'set_url' => 'https://fontawesome.com/icons?s=duotone',
		'font_family' => 'Font Awesome 5 Duotone',
		'font_weight' => '900',
		'font_file_name' => 'fa-duotone-900',
		'css_file_name' => 'font-awesome-duotone',
	),
	'fab' => array(
		'set_name' => 'Font Awesome Brands',
		'set_url' => 'https://fontawesome.com/icons?s=brands',
		'font_family' => 'Font Awesome 5 Brands',
		'font_weight' => '400',
		'font_file_name' => 'fa-brands-400',
	),
	'material' => array(
		'set_name' => 'Material',
		'set_url' => 'https://material.io/icons/',
		'font_family' => 'Material Icons',
		'font_weight' => '400',
		'font_file_name' => 'material-icons',
	),
);
