diff --git a/.azure/workflows/azure-ci-development.yml b/.azure/workflows/azure-ci-development.yml new file mode 100644 index 0000000..cd9821c --- /dev/null +++ b/.azure/workflows/azure-ci-development.yml @@ -0,0 +1,50 @@ +# ASP.NET Core + +# Build and test ASP.NET Core projects targeting .NET Core. +# Add steps that run tests, create a NuGet package, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core + +trigger: +- develop +- release/* + +pr: +- master +- develop + +pool: + vmImage: 'ubuntu-latest' + +variables: + buildConfiguration: 'Debug' + +steps: + +# Install .NET Core SDK +- task: DotNetCoreInstaller@1 + inputs: + version: '2.2.x' +- task: DotNetCoreInstaller@1 + inputs: + version: '3.0.x' + +# SonarCloud Prepare Analysis +- task: SonarCloudPrepare@1 + inputs: + SonarCloud: 'SonarCloud Daniel127' + organization: 'daniel127' + scannerMode: 'MSBuild' + projectKey: 'semanticui-razor-components' + projectName: 'Semantic UI Razor Components' + +# Build solution +- task: DotNetCoreCLI@2 + inputs: + command: 'build' + arguments: '--configuration $(buildConfiguration)' + +# SonarCloud analyze and publish results +- task: SonarCloudAnalyze@1 +- task: SonarCloudPublish@1 + inputs: + pollingTimeoutSec: '300' \ No newline at end of file diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 25203d8..5d93338 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -6,12 +6,6 @@ trigger: - master -- develop -- release/* - -pr: -- master -- develop pool: vmImage: 'ubuntu-latest' @@ -21,13 +15,18 @@ variables: steps: +- task: Bash@3 + inputs: + filePath: '.azure/workflows/configure-variables-release.sh' + failOnStderr: true + # Install .NET Core SDK - task: DotNetCoreInstaller@1 inputs: - version: '2.2.402' + version: '2.2.x' - task: DotNetCoreInstaller@1 inputs: - version: '3.0.100-rc1-014190' + version: '3.0.x' # SonarCloud Prepare Analysis - task: SonarCloudPrepare@1 @@ -48,4 +47,18 @@ steps: - task: SonarCloudAnalyze@1 - task: SonarCloudPublish@1 inputs: - pollingTimeoutSec: '300' \ No newline at end of file + pollingTimeoutSec: '300' + +- task: DotNetCoreCLI@2 + inputs: + command: 'pack' + packagesToPack: '**/QD.Components.Semantic.csproj' + configuration: '$(buildConfiguration)' + packDirectory: '$(Pipeline.Workspace)/nuget' + nobuild: true + versioningScheme: 'off' + +- task: PublishPipelineArtifact@1 + inputs: + targetPath: '$(Pipeline.Workspace)/nuget' + artifact: 'Package' \ No newline at end of file diff --git a/.azure/workflows/configure-variables-release.sh b/.azure/workflows/configure-variables-release.sh new file mode 100644 index 0000000..d0a2bdc --- /dev/null +++ b/.azure/workflows/configure-variables-release.sh @@ -0,0 +1,24 @@ +#!/bin/bash +function check_version() { + if [[ $1 =~ ^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-((0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?(\+([0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*))?$ ]]; then + echo "$1" + else + echo "" + fi +} + +echo "Configuring package version" + +commitId=$BUILD_SOURCEVERSION + +gitTagVersion="$(git describe --exact-match $commitId --abbrev=0 --tags --first-parent)" +appVersion=${gitTagVersion:1} +echo "Git version: $gitTagVersion" +echo "App version: $appVersion" + +if [[ ! $(check_version ${appVersion}) ]]; then + exit 1; +fi + +echo "##vso[task.setvariable variable=packageVersion]$appVersion" +echo "Finished" \ No newline at end of file diff --git a/.github/workflows/ci-release.yml.backup b/.github/workflows/ci-release.yml similarity index 71% rename from .github/workflows/ci-release.yml.backup rename to .github/workflows/ci-release.yml index fd759eb..f51bac4 100644 --- a/.github/workflows/ci-release.yml.backup +++ b/.github/workflows/ci-release.yml @@ -12,6 +12,6 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 3.0.100-rc1-014190 + dotnet-version: 3.0.100 - name: Build with dotnet - run: dotnet build --configuration Release + run: dotnet build --configuration Debug diff --git a/QD.Components.Semantic.Demo/QD.Components.Semantic.Demo.csproj b/QD.Components.Semantic.Demo/QD.Components.Semantic.Demo.csproj index 890cde4..769949e 100644 --- a/QD.Components.Semantic.Demo/QD.Components.Semantic.Demo.csproj +++ b/QD.Components.Semantic.Demo/QD.Components.Semantic.Demo.csproj @@ -8,10 +8,10 @@ - - - - + + + + diff --git a/QD.Components.Semantic/QD.Components.Semantic.csproj b/QD.Components.Semantic/QD.Components.Semantic.csproj index 12e7970..ebb0151 100644 --- a/QD.Components.Semantic/QD.Components.Semantic.csproj +++ b/QD.Components.Semantic/QD.Components.Semantic.csproj @@ -3,20 +3,30 @@ netstandard2.0 3.0 - - - - \QD.Components.Semantic.xml + LICENSE.md + https://github.com/Daniel127/SemanticUI-Razor-Components + https://github.com/Daniel127/SemanticUI-Razor-Components + git + Components;Component;Blazor;Razor;Semantic;UI + Daniel QuiƱones - \QD.Components.Semantic.xml + .\QD.Components.Semantic.xml - - + + + + + + + + True + + diff --git a/QD.Components.Semantic/QD.Components.Semantic.xml b/QD.Components.Semantic/QD.Components.Semantic.xml index b71bbb2..7c2866b 100644 --- a/QD.Components.Semantic/QD.Components.Semantic.xml +++ b/QD.Components.Semantic/QD.Components.Semantic.xml @@ -4,6 +4,11 @@ QD.Components.Semantic + + + Component base for semantic components + + An element type to render as. @@ -39,11 +44,71 @@ All component attributes + + + Constructor + + + + + + + + + + + + + + Configure the semantic component to be rendered + + + + + A Button indicates a possible user action. + + - Primary Button + A button can be formatted to show different levels of emphasis. + + + + + A button can be formatted to show different levels of emphasis. + + + + + A button can animate to show hidden content. + + + Called after user's click. + + + + + + + + Used in some Button types, such as `animated`. + + + + + Initially visible, hidden on hover. + + + + + Initially hidden, visible on hover. + + + + + A container limits content to a maximum width. @@ -59,6 +124,27 @@ Reduce maximum width to more naturally accommodate text. + + + Align container text. + + + + + + + + A flag is is used to represent a political state. + + + + + Flag name, can use the two digit country code, the full name, or a common alias. + + + + + An icon is a glyph used to represent something else. @@ -155,8730 +241,8950 @@ + + + Button animation + + + + + None + + + + + Animation horizontal + + + + + Animation vertical + + + + + Animation fade + + Semantic color + + + None + + + + + Red color + + + + + Orange color + + + + + Yellow color + + + + + Olive color + + + + + Green color + + + + + Teal color + + + + + Blue color + + + + + Violet color + + + + + Purple color + + + + + Pink color + + + + + Brown color + + + + + Grey color + + + + + Black color + + Text align - + + + None + + + + + Text align left + + + + + Text align right + + + + + Text align center + + + + + Text align justified + + + Semantic flag - + Semantic value: ad - + Semantic value: andorra - + Semantic value: ae - + Semantic value: united arab emirates - + Semantic value: uae - + Semantic value: af - + Semantic value: afghanistan - + Semantic value: ag - + Semantic value: antigua - + Semantic value: ai - + Semantic value: anguilla - + Semantic value: al - + Semantic value: albania - + Semantic value: am - + Semantic value: armenia - + Semantic value: an - + Semantic value: netherlands antilles - + Semantic value: ao - + Semantic value: angola - + Semantic value: ar - + Semantic value: argentina - + Semantic value: as - + Semantic value: american samoa - + Semantic value: at - + Semantic value: austria - + Semantic value: au - + Semantic value: australia - + Semantic value: aw - + Semantic value: aruba - + Semantic value: ax - + Semantic value: aland islands - + Semantic value: az - + Semantic value: azerbaijan - + Semantic value: ba - + Semantic value: bosnia - + Semantic value: bb - + Semantic value: barbados - + Semantic value: bd - + Semantic value: bangladesh - + Semantic value: be - + Semantic value: belgium - + Semantic value: bf - + Semantic value: burkina faso - + Semantic value: bg - + Semantic value: bulgaria - + Semantic value: bh - + Semantic value: bahrain - + Semantic value: bi - + Semantic value: burundi - + Semantic value: bj - + Semantic value: benin - + Semantic value: bm - + Semantic value: bermuda - + Semantic value: bn - + Semantic value: brunei - + Semantic value: bo - + Semantic value: bolivia - + Semantic value: br - + Semantic value: brazil - + Semantic value: bs - + Semantic value: bahamas - + Semantic value: bt - + Semantic value: bhutan - + Semantic value: bv - + Semantic value: bouvet island - + Semantic value: bw - + Semantic value: botswana - + Semantic value: by - + Semantic value: belarus - + Semantic value: bz - + Semantic value: belize - + Semantic value: ca - + Semantic value: canada - + Semantic value: cc - + Semantic value: cocos islands - + Semantic value: cd - + Semantic value: congo - + Semantic value: cf - + Semantic value: central african republic - + Semantic value: cg - + Semantic value: congo brazzaville - + Semantic value: ch - + Semantic value: switzerland - + Semantic value: ci - + Semantic value: cote divoire - + Semantic value: ck - + Semantic value: cook islands - + Semantic value: cl - + Semantic value: chile - + Semantic value: cm - + Semantic value: cameroon - + Semantic value: cn - + Semantic value: china - + Semantic value: co - + Semantic value: colombia - + Semantic value: cr - + Semantic value: costa rica - + Semantic value: cs - + Semantic value: cu - + Semantic value: cuba - + Semantic value: cv - + Semantic value: cape verde - + Semantic value: cx - + Semantic value: christmas island - + Semantic value: cy - + Semantic value: cyprus - + Semantic value: cz - + Semantic value: czech republic - + Semantic value: de - + Semantic value: germany - + Semantic value: dj - + Semantic value: djibouti - + Semantic value: dk - + Semantic value: denmark - + Semantic value: dm - + Semantic value: dominica - + Semantic value: do - + Semantic value: dominican republic - + Semantic value: dz - + Semantic value: algeria - + Semantic value: ec - + Semantic value: ecuador - + Semantic value: ee - + Semantic value: estonia - + Semantic value: eg - + Semantic value: egypt - + Semantic value: eh - + Semantic value: western sahara - + Semantic value: er - + Semantic value: eritrea - + Semantic value: es - + Semantic value: spain - + Semantic value: et - + Semantic value: ethiopia - + Semantic value: eu - + Semantic value: european union - + Semantic value: fi - + Semantic value: finland - + Semantic value: fj - + Semantic value: fiji - + Semantic value: fk - + Semantic value: falkland islands - + Semantic value: fm - + Semantic value: micronesia - + Semantic value: fo - + Semantic value: faroe islands - + Semantic value: fr - + Semantic value: france - + Semantic value: ga - + Semantic value: gabon - + Semantic value: gb - + Semantic value: uk - + Semantic value: united kingdom - + Semantic value: gd - + Semantic value: grenada - + Semantic value: ge - + Semantic value: georgia - + Semantic value: gf - + Semantic value: french guiana - + Semantic value: gh - + Semantic value: ghana - + Semantic value: gi - + Semantic value: gibraltar - + Semantic value: gl - + Semantic value: greenland - + Semantic value: gm - + Semantic value: gambia - + Semantic value: gn - + Semantic value: guinea - + Semantic value: gp - + Semantic value: guadeloupe - + Semantic value: gq - + Semantic value: equatorial guinea - + Semantic value: gr - + Semantic value: greece - + Semantic value: gs - + Semantic value: sandwich islands - + Semantic value: gt - + Semantic value: guatemala - + Semantic value: gu - + Semantic value: guam - + Semantic value: gw - + Semantic value: guinea-bissau - + Semantic value: gy - + Semantic value: guyana - + Semantic value: hk - + Semantic value: hong kong - + Semantic value: hm - + Semantic value: heard island - + Semantic value: hn - + Semantic value: honduras - + Semantic value: hr - + Semantic value: croatia - + Semantic value: ht - + Semantic value: haiti - + Semantic value: hu - + Semantic value: hungary - + Semantic value: id - + Semantic value: indonesia - + Semantic value: ie - + Semantic value: ireland - + Semantic value: il - + Semantic value: israel - + Semantic value: in - + Semantic value: india - + Semantic value: io - + Semantic value: indian ocean territory - + Semantic value: iq - + Semantic value: iraq - + Semantic value: ir - + Semantic value: iran - + Semantic value: is - + Semantic value: iceland - + Semantic value: it - + Semantic value: italy - + Semantic value: jm - + Semantic value: jamaica - + Semantic value: jo - + Semantic value: jordan - + Semantic value: jp - + Semantic value: japan - + Semantic value: ke - + Semantic value: kenya - + Semantic value: kg - + Semantic value: kyrgyzstan - + Semantic value: kh - + Semantic value: cambodia - + Semantic value: ki - + Semantic value: kiribati - + Semantic value: km - + Semantic value: comoros - + Semantic value: kn - + Semantic value: saint kitts and nevis - + Semantic value: kp - + Semantic value: north korea - + Semantic value: kr - + Semantic value: south korea - + Semantic value: kw - + Semantic value: kuwait - + Semantic value: ky - + Semantic value: cayman islands - + Semantic value: kz - + Semantic value: kazakhstan - + Semantic value: la - + Semantic value: laos - + Semantic value: lb - + Semantic value: lebanon - + Semantic value: lc - + Semantic value: saint lucia - + Semantic value: li - + Semantic value: liechtenstein - + Semantic value: lk - + Semantic value: sri lanka - + Semantic value: lr - + Semantic value: liberia - + Semantic value: ls - + Semantic value: lesotho - + Semantic value: lt - + Semantic value: lithuania - + Semantic value: lu - + Semantic value: luxembourg - + Semantic value: lv - + Semantic value: latvia - + Semantic value: ly - + Semantic value: libya - + Semantic value: ma - + Semantic value: morocco - + Semantic value: mc - + Semantic value: monaco - + Semantic value: md - + Semantic value: moldova - + Semantic value: me - + Semantic value: montenegro - + Semantic value: mg - + Semantic value: madagascar - + Semantic value: mh - + Semantic value: marshall islands - + Semantic value: mk - + Semantic value: macedonia - + Semantic value: ml - + Semantic value: mali - + Semantic value: mm - + Semantic value: myanmar - + Semantic value: burma - + Semantic value: mn - + Semantic value: mongolia - + Semantic value: mo - + Semantic value: macau - + Semantic value: mp - + Semantic value: northern mariana islands - + Semantic value: mq - + Semantic value: martinique - + Semantic value: mr - + Semantic value: mauritania - + Semantic value: ms - + Semantic value: montserrat - + Semantic value: mt - + Semantic value: malta - + Semantic value: mu - + Semantic value: mauritius - + Semantic value: mv - + Semantic value: maldives - + Semantic value: mw - + Semantic value: malawi - + Semantic value: mx - + Semantic value: mexico - + Semantic value: my - + Semantic value: malaysia - + Semantic value: mz - + Semantic value: mozambique - + Semantic value: na - + Semantic value: namibia - + Semantic value: nc - + Semantic value: new caledonia - + Semantic value: ne - + Semantic value: niger - + Semantic value: nf - + Semantic value: norfolk island - + Semantic value: ng - + Semantic value: nigeria - + Semantic value: ni - + Semantic value: nicaragua - + Semantic value: nl - + Semantic value: netherlands - + Semantic value: no - + Semantic value: norway - + Semantic value: np - + Semantic value: nepal - + Semantic value: nr - + Semantic value: nauru - + Semantic value: nu - + Semantic value: niue - + Semantic value: nz - + Semantic value: new zealand - + Semantic value: om - + Semantic value: oman - + Semantic value: pa - + Semantic value: panama - + Semantic value: pe - + Semantic value: peru - + Semantic value: pf - + Semantic value: french polynesia - + Semantic value: pg - + Semantic value: new guinea - + Semantic value: ph - + Semantic value: philippines - + Semantic value: pk - + Semantic value: pakistan - + Semantic value: pl - + Semantic value: poland - + Semantic value: pm - + Semantic value: saint pierre - + Semantic value: pn - + Semantic value: pitcairn islands - + Semantic value: pr - + Semantic value: puerto rico - + Semantic value: ps - + Semantic value: palestine - + Semantic value: pt - + Semantic value: portugal - + Semantic value: pw - + Semantic value: palau - + Semantic value: py - + Semantic value: paraguay - + Semantic value: qa - + Semantic value: qatar - + Semantic value: re - + Semantic value: reunion - + Semantic value: ro - + Semantic value: romania - + Semantic value: rs - + Semantic value: serbia - + Semantic value: ru - + Semantic value: russia - + Semantic value: rw - + Semantic value: rwanda - + Semantic value: sa - + Semantic value: saudi arabia - + Semantic value: sb - + Semantic value: solomon islands - + Semantic value: sc - + Semantic value: seychelles - + Semantic value: gb sct - + Semantic value: scotland - + Semantic value: sd - + Semantic value: sudan - + Semantic value: se - + Semantic value: sweden - + Semantic value: sg - + Semantic value: singapore - + Semantic value: sh - + Semantic value: saint helena - + Semantic value: si - + Semantic value: slovenia - + Semantic value: sj - + Semantic value: svalbard - + Semantic value: jan mayen - + Semantic value: sk - + Semantic value: slovakia - + Semantic value: sl - + Semantic value: sierra leone - + Semantic value: sm - + Semantic value: san marino - + Semantic value: sn - + Semantic value: senegal - + Semantic value: so - + Semantic value: somalia - + Semantic value: sr - + Semantic value: suriname - + Semantic value: st - + Semantic value: sao tome - + Semantic value: sv - + Semantic value: el salvador - + Semantic value: sy - + Semantic value: syria - + Semantic value: sz - + Semantic value: swaziland - + Semantic value: tc - + Semantic value: caicos islands - + Semantic value: td - + Semantic value: chad - + Semantic value: tf - + Semantic value: french territories - + Semantic value: tg - + Semantic value: togo - + Semantic value: th - + Semantic value: thailand - + Semantic value: tj - + Semantic value: tajikistan - + Semantic value: tk - + Semantic value: tokelau - + Semantic value: tl - + Semantic value: timorleste - + Semantic value: tm - + Semantic value: turkmenistan - + Semantic value: tn - + Semantic value: tunisia - + Semantic value: to - + Semantic value: tonga - + Semantic value: tr - + Semantic value: turkey - + Semantic value: tt - + Semantic value: trinidad - + Semantic value: tv - + Semantic value: tuvalu - + Semantic value: tw - + Semantic value: taiwan - + Semantic value: tz - + Semantic value: tanzania - + Semantic value: ua - + Semantic value: ukraine - + Semantic value: ug - + Semantic value: uganda - + Semantic value: um - + Semantic value: us minor islands - + Semantic value: us - + Semantic value: america - + Semantic value: united states - + Semantic value: uy - + Semantic value: uruguay - + Semantic value: uz - + Semantic value: uzbekistan - + Semantic value: va - + Semantic value: vatican city - + Semantic value: vc - + Semantic value: saint vincent - + Semantic value: ve - + Semantic value: venezuela - + Semantic value: vg - + Semantic value: british virgin islands - + Semantic value: vi - + Semantic value: us virgin islands - + Semantic value: vn - + Semantic value: vietnam - + Semantic value: vu - + Semantic value: vanuatu - + Semantic value: gb wls - + Semantic value: wales - + Semantic value: wf - + Semantic value: wallis and futuna - + Semantic value: ws - + Semantic value: samoa - + Semantic value: ye - + Semantic value: yemen - + Semantic value: yt - + Semantic value: mayotte - + Semantic value: za - + Semantic value: south africa - + Semantic value: zm - + Semantic value: zambia - + Semantic value: zw - + Semantic value: zimbabwe - + Semantic icon - + Semantic value: american sign language interpreting - + Semantic value: assistive listening systems - + Semantic value: audio description - + Semantic value: blind - + Semantic value: braille - + Semantic value: closed captioning - + Semantic value: closed captioning outline - + Semantic value: deaf - + Semantic value: low vision - + Semantic value: phone volume - + Semantic value: question circle - + Semantic value: question circle outline - + Semantic value: sign language - + Semantic value: tty - + Semantic value: universal access - + Semantic value: wheelchair - + Semantic value: angle double down - + Semantic value: angle double left - + Semantic value: angle double right - + Semantic value: angle double up - + Semantic value: angle down - + Semantic value: angle left - + Semantic value: angle right - + Semantic value: angle up - + Semantic value: arrow alternate circle down - + Semantic value: arrow alternate circle down outline - + Semantic value: arrow alternate circle left - + Semantic value: arrow alternate circle left outline - + Semantic value: arrow alternate circle right - + Semantic value: arrow alternate circle right outline - + Semantic value: arrow alternate circle up - + Semantic value: arrow alternate circle up outline - + Semantic value: arrow circle down - + Semantic value: arrow circle left - + Semantic value: arrow circle right - + Semantic value: arrow circle up - + Semantic value: arrow down - + Semantic value: arrow left - + Semantic value: arrow right - + Semantic value: arrow up - + Semantic value: arrows alternate - + Semantic value: arrows alternate horizontal - + Semantic value: arrows alternate vertical - + Semantic value: caret down - + Semantic value: caret left - + Semantic value: caret right - + Semantic value: caret square down - + Semantic value: caret square down outline - + Semantic value: caret square left - + Semantic value: caret square left outline - + Semantic value: caret square right - + Semantic value: caret square right outline - + Semantic value: caret square up - + Semantic value: caret square up outline - + Semantic value: caret up - + Semantic value: cart arrow down - + Semantic value: chart line - + Semantic value: chevron circle down - + Semantic value: chevron circle left - + Semantic value: chevron circle right - + Semantic value: chevron circle up - + Semantic value: chevron down - + Semantic value: chevron left - + Semantic value: chevron right - + Semantic value: chevron up - + Semantic value: cloud download - + Semantic value: cloud upload - + Semantic value: download - + Semantic value: exchange - + Semantic value: expand arrows alternate - + Semantic value: external alternate - + Semantic value: external square alternate - + Semantic value: hand point down - + Semantic value: hand point down outline - + Semantic value: hand point left - + Semantic value: hand point left outline - + Semantic value: hand point right - + Semantic value: hand point right outline - + Semantic value: hand point up - + Semantic value: hand point up outline - + Semantic value: hand pointer - + Semantic value: hand pointer outline - + Semantic value: history - + Semantic value: level down alternate - + Semantic value: level up alternate - + Semantic value: location arrow - + Semantic value: long arrow alternate down - + Semantic value: long arrow alternate left - + Semantic value: long arrow alternate right - + Semantic value: long arrow alternate up - + Semantic value: mouse pointer - + Semantic value: play - + Semantic value: random - + Semantic value: recycle - + Semantic value: redo - + Semantic value: redo alternate - + Semantic value: reply - + Semantic value: reply all - + Semantic value: retweet - + Semantic value: share - + Semantic value: share square - + Semantic value: share square outline - + Semantic value: sign-in - + Semantic value: sign-out - + Semantic value: sign-in alternate - + Semantic value: sign-out alternate - + Semantic value: sort - + Semantic value: sort alphabet down - + Semantic value: sort alphabet up - + Semantic value: sort amount down - + Semantic value: sort amount up - + Semantic value: sort down - + Semantic value: sort numeric down - + Semantic value: sort numeric up - + Semantic value: sort up - + Semantic value: sync - + Semantic value: sync alternate - + Semantic value: text height - + Semantic value: text width - + Semantic value: undo - + Semantic value: undo alternate - + Semantic value: upload - + Semantic value: zoom-in - + Semantic value: zoom-out - + Semantic value: backward - + Semantic value: circle - + Semantic value: circle outline - + Semantic value: compress - + Semantic value: eject - + Semantic value: expand - + Semantic value: fast backward - + Semantic value: fast forward - + Semantic value: file audio - + Semantic value: file audio outline - + Semantic value: file video - + Semantic value: file video outline - + Semantic value: film - + Semantic value: forward - + Semantic value: headphones - + Semantic value: microphone - + Semantic value: microphone slash - + Semantic value: music - + Semantic value: pause - + Semantic value: pause circle - + Semantic value: pause circle outline - + Semantic value: play circle - + Semantic value: play circle outline - + Semantic value: podcast - + Semantic value: rss - + Semantic value: rss square - + Semantic value: step backward - + Semantic value: step forward - + Semantic value: stop - + Semantic value: stop circle - + Semantic value: stop circle outline - + Semantic value: video - + Semantic value: volume down - + Semantic value: volume off - + Semantic value: volume up - + Semantic value: address book - + Semantic value: address book outline - + Semantic value: address card - + Semantic value: address card outline - + Semantic value: archive - + Semantic value: balance scale - + Semantic value: birthday cake - + Semantic value: book - + Semantic value: briefcase - + Semantic value: building - + Semantic value: building outline - + Semantic value: bullhorn - + Semantic value: bullseye - + Semantic value: calculator - + Semantic value: calendar - + Semantic value: calendar outline - + Semantic value: calendar alternate - + Semantic value: calendar alternate outline - + Semantic value: certificate - + Semantic value: chart area - + Semantic value: chart bar - + Semantic value: chart bar outline - + Semantic value: chart pie - + Semantic value: clipboard - + Semantic value: clipboard outline - + Semantic value: coffee - + Semantic value: columns - + Semantic value: compass - + Semantic value: compass outline - + Semantic value: copy - + Semantic value: copy outline - + Semantic value: copyright - + Semantic value: copyright outline - + Semantic value: cut - + Semantic value: edit - + Semantic value: edit outline - + Semantic value: envelope - + Semantic value: envelope outline - + Semantic value: envelope open - + Semantic value: envelope open outline - + Semantic value: envelope square - + Semantic value: eraser - + Semantic value: fax - + Semantic value: file - + Semantic value: file outline - + Semantic value: file alternate - + Semantic value: file alternate outline - + Semantic value: folder - + Semantic value: folder outline - + Semantic value: folder open - + Semantic value: folder open outline - + Semantic value: globe - + Semantic value: industry - + Semantic value: paperclip - + Semantic value: paste - + Semantic value: pen square - + Semantic value: pencil alternate - + Semantic value: percent - + Semantic value: phone - + Semantic value: phone square - + Semantic value: registered - + Semantic value: registered outline - + Semantic value: save - + Semantic value: save outline - + Semantic value: sitemap - + Semantic value: sticky note - + Semantic value: sticky note outline - + Semantic value: suitcase - + Semantic value: table - + Semantic value: tag - + Semantic value: tags - + Semantic value: tasks - + Semantic value: thumbtack - + Semantic value: trademark - + Semantic value: chess - + Semantic value: chess bishop - + Semantic value: chess board - + Semantic value: chess king - + Semantic value: chess knight - + Semantic value: chess pawn - + Semantic value: chess queen - + Semantic value: chess rook - + Semantic value: square full - + Semantic value: barcode - + Semantic value: bath - + Semantic value: bug - + Semantic value: code - + Semantic value: code branch - + Semantic value: file code - + Semantic value: file code outline - + Semantic value: filter - + Semantic value: fire extinguisher - + Semantic value: keyboard - + Semantic value: keyboard outline - + Semantic value: microchip - + Semantic value: qrcode - + Semantic value: shield alternate - + Semantic value: terminal - + Semantic value: user secret - + Semantic value: window close - + Semantic value: window close outline - + Semantic value: window maximize - + Semantic value: window maximize outline - + Semantic value: window minimize - + Semantic value: window minimize outline - + Semantic value: window restore - + Semantic value: window restore outline - + Semantic value: at - + Semantic value: bell - + Semantic value: bell outline - + Semantic value: bell slash - + Semantic value: bell slash outline - + Semantic value: comment - + Semantic value: comment outline - + Semantic value: comment alternate - + Semantic value: comment alternate outline - + Semantic value: comments - + Semantic value: comments outline - + Semantic value: inbox - + Semantic value: language - + Semantic value: mobile - + Semantic value: mobile alternate - + Semantic value: paper plane - + Semantic value: paper plane outline - + Semantic value: wifi - + Semantic value: desktop - + Semantic value: hdd - + Semantic value: hdd outline - + Semantic value: laptop - + Semantic value: plug - + Semantic value: power off - + Semantic value: print - + Semantic value: server - + Semantic value: tablet - + Semantic value: tablet alternate - + Semantic value: tv - + Semantic value: dollar sign - + Semantic value: euro sign - + Semantic value: lira sign - + Semantic value: money bill alternate - + Semantic value: money bill alternate outline - + Semantic value: pound sign - + Semantic value: ruble sign - + Semantic value: rupee sign - + Semantic value: shekel sign - + Semantic value: won sign - + Semantic value: yen sign - + Semantic value: calendar check - + Semantic value: calendar check outline - + Semantic value: calendar minus - + Semantic value: calendar minus outline - + Semantic value: calendar plus - + Semantic value: calendar plus outline - + Semantic value: calendar times - + Semantic value: calendar times outline - + Semantic value: clock - + Semantic value: clock outline - + Semantic value: hourglass - + Semantic value: hourglass outline - + Semantic value: hourglass end - + Semantic value: hourglass half - + Semantic value: hourglass start - + Semantic value: stopwatch - + Semantic value: adjust - + Semantic value: clone - + Semantic value: clone outline - + Semantic value: crop - + Semantic value: crosshairs - + Semantic value: eye - + Semantic value: eye dropper - + Semantic value: eye slash - + Semantic value: eye slash outline - + Semantic value: object group - + Semantic value: object group outline - + Semantic value: object ungroup - + Semantic value: object ungroup outline - + Semantic value: paint brush - + Semantic value: tint - + Semantic value: align center - + Semantic value: align justify - + Semantic value: align left - + Semantic value: align right - + Semantic value: bold - + Semantic value: font - + Semantic value: heading - + Semantic value: i cursor - + Semantic value: indent - + Semantic value: italic - + Semantic value: linkify - + Semantic value: list - + Semantic value: list alternate - + Semantic value: list alternate outline - + Semantic value: list ol - + Semantic value: list ul - + Semantic value: outdent - + Semantic value: paragraph - + Semantic value: quote left - + Semantic value: quote right - + Semantic value: strikethrough - + Semantic value: subscript - + Semantic value: superscript - + Semantic value: th - + Semantic value: th large - + Semantic value: th list - + Semantic value: trash - + Semantic value: trash alternate - + Semantic value: trash alternate outline - + Semantic value: underline - + Semantic value: unlink - + Semantic value: file archive - + Semantic value: file archive outline - + Semantic value: file excel - + Semantic value: file excel outline - + Semantic value: file image - + Semantic value: file image outline - + Semantic value: file pdf - + Semantic value: file pdf outline - + Semantic value: file powerpoint - + Semantic value: file powerpoint outline - + Semantic value: file word - + Semantic value: file word outline - + Semantic value: genderless - + Semantic value: mars - + Semantic value: mars double - + Semantic value: mars stroke - + Semantic value: mars stroke horizontal - + Semantic value: mars stroke vertical - + Semantic value: mercury - + Semantic value: neuter - + Semantic value: transgender - + Semantic value: transgender alternate - + Semantic value: venus - + Semantic value: venus double - + Semantic value: venus mars - + Semantic value: hand lizard - + Semantic value: hand lizard outline - + Semantic value: hand paper - + Semantic value: hand paper outline - + Semantic value: hand peace - + Semantic value: hand peace outline - + Semantic value: hand rock - + Semantic value: hand rock outline - + Semantic value: hand scissors - + Semantic value: hand scissors outline - + Semantic value: hand spock - + Semantic value: hand spock outline - + Semantic value: handshake - + Semantic value: handshake outline - + Semantic value: thumbs down - + Semantic value: thumbs down outline - + Semantic value: thumbs up - + Semantic value: thumbs up outline - + Semantic value: ambulance - + Semantic value: h square - + Semantic value: heart - + Semantic value: heart outline - + Semantic value: heartbeat - + Semantic value: hospital - + Semantic value: hospital outline - + Semantic value: medkit - + Semantic value: plus square - + Semantic value: plus square outline - + Semantic value: stethoscope - + Semantic value: user md - + Semantic value: bolt - + Semantic value: camera - + Semantic value: camera retro - + Semantic value: id badge - + Semantic value: id badge outline - + Semantic value: id card - + Semantic value: id card outline - + Semantic value: image - + Semantic value: image outline - + Semantic value: images - + Semantic value: images outline - + Semantic value: sliders horizontal - + Semantic value: ban - + Semantic value: bars - + Semantic value: beer - + Semantic value: check - + Semantic value: check circle - + Semantic value: check circle outline - + Semantic value: check square - + Semantic value: check square outline - + Semantic value: cloud - + Semantic value: cog - + Semantic value: cogs - + Semantic value: database - + Semantic value: dot circle - + Semantic value: dot circle outline - + Semantic value: ellipsis horizontal - + Semantic value: ellipsis vertical - + Semantic value: exclamation - + Semantic value: exclamation circle - + Semantic value: exclamation triangle - + Semantic value: flag - + Semantic value: flag outline - + Semantic value: flag checkered - + Semantic value: frown - + Semantic value: frown outline - + Semantic value: hashtag - + Semantic value: home - + Semantic value: info - + Semantic value: info circle - + Semantic value: magic - + Semantic value: meh - + Semantic value: meh outline - + Semantic value: minus - + Semantic value: minus circle - + Semantic value: minus square - + Semantic value: minus square outline - + Semantic value: plus - + Semantic value: plus circle - + Semantic value: question - + Semantic value: search - + Semantic value: search minus - + Semantic value: search plus - + Semantic value: share alternate - + Semantic value: share alternate square - + Semantic value: signal - + Semantic value: smile - + Semantic value: smile outline - + Semantic value: star - + Semantic value: star outline - + Semantic value: star half - + Semantic value: star half outline - + Semantic value: times - + Semantic value: times circle - + Semantic value: times circle outline - + Semantic value: toggle off - + Semantic value: toggle on - + Semantic value: trophy - + Semantic value: user - + Semantic value: user outline - + Semantic value: user circle - + Semantic value: user circle outline - + Semantic value: box - + Semantic value: boxes - + Semantic value: clipboard check - + Semantic value: clipboard list - + Semantic value: dolly - + Semantic value: dolly flatbed - + Semantic value: pallet - + Semantic value: shipping fast - + Semantic value: truck - + Semantic value: warehouse - + Semantic value: anchor - + Semantic value: bed - + Semantic value: bicycle - + Semantic value: binoculars - + Semantic value: bomb - + Semantic value: bookmark - + Semantic value: bookmark outline - + Semantic value: car - + Semantic value: fighter jet - + Semantic value: fire - + Semantic value: flask - + Semantic value: gamepad - + Semantic value: gavel - + Semantic value: gift - + Semantic value: glass martini - + Semantic value: graduation cap - + Semantic value: key - + Semantic value: leaf - + Semantic value: lemon - + Semantic value: lemon outline - + Semantic value: life ring - + Semantic value: life ring outline - + Semantic value: lightbulb - + Semantic value: lightbulb outline - + Semantic value: magnet - + Semantic value: male - + Semantic value: map - + Semantic value: map outline - + Semantic value: map marker - + Semantic value: map marker alternate - + Semantic value: map pin - + Semantic value: map signs - + Semantic value: motorcycle - + Semantic value: newspaper - + Semantic value: newspaper outline - + Semantic value: paw - + Semantic value: plane - + Semantic value: road - + Semantic value: rocket - + Semantic value: ship - + Semantic value: shopping bag - + Semantic value: shopping basket - + Semantic value: shopping cart - + Semantic value: shower - + Semantic value: street view - + Semantic value: subway - + Semantic value: taxi - + Semantic value: ticket alternate - + Semantic value: train - + Semantic value: tree - + Semantic value: umbrella - + Semantic value: university - + Semantic value: utensil spoon - + Semantic value: utensils - + Semantic value: wrench - + Semantic value: band aid - + Semantic value: dna - + Semantic value: first aid - + Semantic value: hospital symbol - + Semantic value: pills - + Semantic value: syringe - + Semantic value: thermometer - + Semantic value: weight - + Semantic value: bus - + Semantic value: cube - + Semantic value: cubes - + Semantic value: futbol - + Semantic value: futbol outline - + Semantic value: gem - + Semantic value: gem outline - + Semantic value: lock - + Semantic value: lock open - + Semantic value: moon - + Semantic value: moon outline - + Semantic value: puzzle piece - + Semantic value: snowflake - + Semantic value: snowflake outline - + Semantic value: space shuttle - + Semantic value: sun - + Semantic value: sun outline - + Semantic value: tachometer alternate - + Semantic value: unlock - + Semantic value: unlock alternate - + Semantic value: cart plus - + Semantic value: credit card - + Semantic value: credit card outline - + Semantic value: square - + Semantic value: square outline - + Semantic value: asterisk - + Semantic value: circle notch - + Semantic value: spinner - + Semantic value: baseball ball - + Semantic value: basketball ball - + Semantic value: bowling ball - + Semantic value: football ball - + Semantic value: golf ball - + Semantic value: hockey puck - + Semantic value: quidditch - + Semantic value: table tennis - + Semantic value: volleyball ball - + Semantic value: battery empty - + Semantic value: battery full - + Semantic value: battery half - + Semantic value: battery quarter - + Semantic value: battery three quarters - + Semantic value: thermometer empty - + Semantic value: thermometer full - + Semantic value: thermometer half - + Semantic value: thermometer quarter - + Semantic value: thermometer three quarters - + Semantic value: child - + Semantic value: female - + Semantic value: user plus - + Semantic value: user times - + Semantic value: users - + Semantic value: 500px - + Semantic value: accessible - + Semantic value: accusoft - + Semantic value: adn - + Semantic value: adversal - + Semantic value: affiliatetheme - + Semantic value: algolia - + Semantic value: amazon - + Semantic value: amazon pay - + Semantic value: amilia - + Semantic value: android - + Semantic value: angellist - + Semantic value: angrycreative - + Semantic value: angular - + Semantic value: app store - + Semantic value: app store ios - + Semantic value: apper - + Semantic value: apple - + Semantic value: apple pay - + Semantic value: asymmetrik - + Semantic value: audible - + Semantic value: autoprefixer - + Semantic value: avianex - + Semantic value: aviato - + Semantic value: aws - + Semantic value: bandcamp - + Semantic value: behance - + Semantic value: behance square - + Semantic value: bimobject - + Semantic value: bitbucket - + Semantic value: bitcoin - + Semantic value: bity - + Semantic value: black tie - + Semantic value: blackberry - + Semantic value: blogger - + Semantic value: blogger b - + Semantic value: bluetooth - + Semantic value: bluetooth b - + Semantic value: btc - + Semantic value: buromobelexperte - + Semantic value: buysellads - + Semantic value: cc amazon pay - + Semantic value: cc amex - + Semantic value: cc apple pay - + Semantic value: cc diners club - + Semantic value: cc discover - + Semantic value: cc jcb - + Semantic value: cc mastercard - + Semantic value: cc paypal - + Semantic value: cc stripe - + Semantic value: cc visa - + Semantic value: centercode - + Semantic value: chrome - + Semantic value: cloudscale - + Semantic value: cloudsmith - + Semantic value: cloudversify - + Semantic value: codepen - + Semantic value: codiepie - + Semantic value: connectdevelop - + Semantic value: contao - + Semantic value: cpanel - + Semantic value: creative commons - + Semantic value: css3 - + Semantic value: css3 alternate - + Semantic value: cuttlefish - + Semantic value: d and d - + Semantic value: dashcube - + Semantic value: delicious - + Semantic value: deploydog - + Semantic value: deskpro - + Semantic value: deviantart - + Semantic value: digg - + Semantic value: digital ocean - + Semantic value: discord - + Semantic value: discourse - + Semantic value: dochub - + Semantic value: docker - + Semantic value: draft2digital - + Semantic value: dribbble - + Semantic value: dribbble square - + Semantic value: dropbox - + Semantic value: drupal - + Semantic value: dyalog - + Semantic value: earlybirds - + Semantic value: edge - + Semantic value: elementor - + Semantic value: ember - + Semantic value: empire - + Semantic value: envira - + Semantic value: erlang - + Semantic value: ethereum - + Semantic value: etsy - + Semantic value: expeditedssl - + Semantic value: facebook - + Semantic value: facebook f - + Semantic value: facebook messenger - + Semantic value: facebook square - + Semantic value: firefox - + Semantic value: first order - + Semantic value: firstdraft - + Semantic value: flickr - + Semantic value: flipboard - + Semantic value: fly - + Semantic value: font awesome - + Semantic value: font awesome alternate - + Semantic value: font awesome flag - + Semantic value: fonticons - + Semantic value: fonticons fi - + Semantic value: fort awesome - + Semantic value: fort awesome alternate - + Semantic value: forumbee - + Semantic value: foursquare - + Semantic value: free code camp - + Semantic value: freebsd - + Semantic value: get pocket - + Semantic value: gg - + Semantic value: gg circle - + Semantic value: git - + Semantic value: git square - + Semantic value: github - + Semantic value: github alternate - + Semantic value: github square - + Semantic value: gitkraken - + Semantic value: gitlab - + Semantic value: gitter - + Semantic value: glide - + Semantic value: glide g - + Semantic value: gofore - + Semantic value: goodreads - + Semantic value: goodreads g - + Semantic value: google - + Semantic value: google drive - + Semantic value: google play - + Semantic value: google plus - + Semantic value: google plus g - + Semantic value: google plus square - + Semantic value: google wallet - + Semantic value: gratipay - + Semantic value: grav - + Semantic value: gripfire - + Semantic value: grunt - + Semantic value: gulp - + Semantic value: hacker news - + Semantic value: hacker news square - + Semantic value: hips - + Semantic value: hire a helper - + Semantic value: hooli - + Semantic value: hotjar - + Semantic value: houzz - + Semantic value: html5 - + Semantic value: hubspot - + Semantic value: imdb - + Semantic value: instagram - + Semantic value: internet explorer - + Semantic value: ioxhost - + Semantic value: itunes - + Semantic value: itunes note - + Semantic value: jenkins - + Semantic value: joget - + Semantic value: joomla - + Semantic value: js - + Semantic value: js square - + Semantic value: jsfiddle - + Semantic value: keycdn - + Semantic value: kickstarter - + Semantic value: kickstarter k - + Semantic value: korvue - + Semantic value: laravel - + Semantic value: lastfm - + Semantic value: lastfm square - + Semantic value: leanpub - + Semantic value: less - + Semantic value: linechat - + Semantic value: linkedin - + Semantic value: linkedin alternate - + Semantic value: linode - + Semantic value: linux - + Semantic value: lyft - + Semantic value: magento - + Semantic value: maxcdn - + Semantic value: medapps - + Semantic value: medium - + Semantic value: medium m - + Semantic value: medrt - + Semantic value: meetup - + Semantic value: microsoft - + Semantic value: mix - + Semantic value: mixcloud - + Semantic value: mizuni - + Semantic value: modx - + Semantic value: monero - + Semantic value: napster - + Semantic value: nintendo switch - + Semantic value: node - + Semantic value: node js - + Semantic value: npm - + Semantic value: ns8 - + Semantic value: nutritionix - + Semantic value: odnoklassniki - + Semantic value: odnoklassniki square - + Semantic value: opencart - + Semantic value: openid - + Semantic value: opera - + Semantic value: optin monster - + Semantic value: osi - + Semantic value: page4 - + Semantic value: pagelines - + Semantic value: palfed - + Semantic value: patreon - + Semantic value: paypal - + Semantic value: periscope - + Semantic value: phabricator - + Semantic value: phoenix framework - + Semantic value: php - + Semantic value: pied piper - + Semantic value: pied piper alternate - + Semantic value: pied piper pp - + Semantic value: pinterest - + Semantic value: pinterest p - + Semantic value: pinterest square - + Semantic value: playstation - + Semantic value: product hunt - + Semantic value: pushed - + Semantic value: python - + Semantic value: qq - + Semantic value: quinscape - + Semantic value: quora - + Semantic value: ravelry - + Semantic value: react - + Semantic value: rebel - + Semantic value: redriver - + Semantic value: reddit - + Semantic value: reddit alien - + Semantic value: reddit square - + Semantic value: rendact - + Semantic value: renren - + Semantic value: replyd - + Semantic value: resolving - + Semantic value: rocketchat - + Semantic value: rockrms - + Semantic value: safari - + Semantic value: sass - + Semantic value: schlix - + Semantic value: scribd - + Semantic value: searchengin - + Semantic value: sellcast - + Semantic value: sellsy - + Semantic value: servicestack - + Semantic value: shirtsinbulk - + Semantic value: simplybuilt - + Semantic value: sistrix - + Semantic value: skyatlas - + Semantic value: skype - + Semantic value: slack - + Semantic value: slack hash - + Semantic value: slideshare - + Semantic value: snapchat - + Semantic value: snapchat ghost - + Semantic value: snapchat square - + Semantic value: soundcloud - + Semantic value: speakap - + Semantic value: spotify - + Semantic value: stack exchange - + Semantic value: stack overflow - + Semantic value: staylinked - + Semantic value: steam - + Semantic value: steam square - + Semantic value: steam symbol - + Semantic value: sticker mule - + Semantic value: strava - + Semantic value: stripe - + Semantic value: stripe s - + Semantic value: studiovinari - + Semantic value: stumbleupon - + Semantic value: stumbleupon circle - + Semantic value: superpowers - + Semantic value: supple - + Semantic value: telegram - + Semantic value: telegram plane - + Semantic value: tencent weibo - + Semantic value: themeisle - + Semantic value: trello - + Semantic value: tripadvisor - + Semantic value: tumblr - + Semantic value: tumblr square - + Semantic value: twitch - + Semantic value: twitter - + Semantic value: twitter square - + Semantic value: typo3 - + Semantic value: uber - + Semantic value: uikit - + Semantic value: uniregistry - + Semantic value: untappd - + Semantic value: usb - + Semantic value: ussunnah - + Semantic value: vaadin - + Semantic value: viacoin - + Semantic value: viadeo - + Semantic value: viadeo square - + Semantic value: viber - + Semantic value: vimeo - + Semantic value: vimeo square - + Semantic value: vimeo v - + Semantic value: vine - + Semantic value: vk - + Semantic value: vnv - + Semantic value: vuejs - + Semantic value: wechat - + Semantic value: weibo - + Semantic value: weixin - + Semantic value: whatsapp - + Semantic value: whatsapp square - + Semantic value: whmcs - + Semantic value: wikipedia w - + Semantic value: windows - + Semantic value: wordpress - + Semantic value: wordpress simple - + Semantic value: wpbeginner - + Semantic value: wpexplorer - + Semantic value: wpforms - + Semantic value: xbox - + Semantic value: xing - + Semantic value: xing square - + Semantic value: y combinator - + Semantic value: yahoo - + Semantic value: yandex - + Semantic value: yandex international - + Semantic value: yelp - + Semantic value: yoast - + Semantic value: youtube - + Semantic value: youtube square - + Semantic value: chess rock - + Semantic value: ordered list - + Semantic value: unordered list - + Semantic value: user doctor - + Semantic value: shield - + Semantic value: puzzle - + Semantic value: add circle - + Semantic value: add square - + Semantic value: add to calendar - + Semantic value: add to cart - + Semantic value: add user - + Semantic value: add - + Semantic value: alarm mute - + Semantic value: alarm - + Semantic value: ald - + Semantic value: als - + Semantic value: announcement - + Semantic value: area chart - + Semantic value: area graph - + Semantic value: arrow down cart - + Semantic value: asexual - + Semantic value: asl interpreting - + Semantic value: asl - + Semantic value: assistive listening devices - + Semantic value: attach - + Semantic value: attention - + Semantic value: balance - + Semantic value: bar - + Semantic value: bathtub - + Semantic value: battery four - + Semantic value: battery high - + Semantic value: battery low - + Semantic value: battery one - + Semantic value: battery three - + Semantic value: battery two - + Semantic value: battery zero - + Semantic value: birthday - + Semantic value: block layout - + Semantic value: bluetooth alternative - + Semantic value: broken chain - + Semantic value: browser - + Semantic value: call square - + Semantic value: call - + Semantic value: cancel - + Semantic value: cart - + Semantic value: cc - + Semantic value: chain - + Semantic value: chat - + Semantic value: checked calendar - + Semantic value: checkmark - + Semantic value: circle notched - + Semantic value: close - + Semantic value: cny - + Semantic value: cocktail - + Semantic value: commenting - + Semantic value: computer - + Semantic value: configure - + Semantic value: content - + Semantic value: deafness - + Semantic value: delete calendar - + Semantic value: delete - + Semantic value: detective - + Semantic value: discussions - + Semantic value: doctor - + Semantic value: dollar - + Semantic value: dont - + Semantic value: drivers license - + Semantic value: dropdown - + Semantic value: emergency - + Semantic value: envira gallery - + Semantic value: erase - + Semantic value: eur - + Semantic value: euro - + Semantic value: eyedropper - + Semantic value: factory - + Semantic value: favorite - + Semantic value: feed - + Semantic value: female homosexual - + Semantic value: file text - + Semantic value: file text outline - + Semantic value: find - + Semantic value: fork - + Semantic value: game - + Semantic value: gay - + Semantic value: gbp - + Semantic value: google plus circle - + Semantic value: google plus official - + Semantic value: grab - + Semantic value: graduation - + Semantic value: grid layout - + Semantic value: group - + Semantic value: h - + Semantic value: hand victory - + Semantic value: handicap - + Semantic value: hard of hearing - + Semantic value: header - + Semantic value: help circle - + Semantic value: help - + Semantic value: heterosexual - + Semantic value: hide - + Semantic value: hotel - + Semantic value: hourglass four - + Semantic value: hourglass full - + Semantic value: hourglass one - + Semantic value: hourglass three - + Semantic value: hourglass two - + Semantic value: idea - + Semantic value: ils - + Semantic value: in cart - + Semantic value: inr - + Semantic value: intergender - + Semantic value: intersex - + Semantic value: jpy - + Semantic value: krw - + Semantic value: lab - + Semantic value: law - + Semantic value: legal - + Semantic value: lesbian - + Semantic value: lightning - + Semantic value: like - + Semantic value: line graph - + Semantic value: linkedin square - + Semantic value: lira - + Semantic value: list layout - + Semantic value: magnify - + Semantic value: mail forward - + Semantic value: mail outline - + Semantic value: mail square - + Semantic value: mail - + Semantic value: male homosexual - + Semantic value: man - + Semantic value: marker - + Semantic value: mars alternate - + Semantic value: mars horizontal - + Semantic value: mars vertical - + Semantic value: microsoft edge - + Semantic value: military - + Semantic value: ms edge - + Semantic value: mute - + Semantic value: new pied piper - + Semantic value: non binary transgender - + Semantic value: numbered list - + Semantic value: options - + Semantic value: other gender horizontal - + Semantic value: other gender vertical - + Semantic value: other gender - + Semantic value: payment - + Semantic value: paypal card - + Semantic value: pencil square - + Semantic value: photo - + Semantic value: picture - + Semantic value: pie chart - + Semantic value: pie graph - + Semantic value: pied piper hat - + Semantic value: pin - + Semantic value: plus cart - + Semantic value: point - + Semantic value: pointing down - + Semantic value: pointing left - + Semantic value: pointing right - + Semantic value: pointing up - + Semantic value: pound - + Semantic value: power cord - + Semantic value: power - + Semantic value: privacy - + Semantic value: r circle - + Semantic value: rain - + Semantic value: record - + Semantic value: refresh - + Semantic value: remove circle - + Semantic value: remove from calendar - + Semantic value: remove user - + Semantic value: remove - + Semantic value: repeat - + Semantic value: rmb - + Semantic value: rouble - + Semantic value: rub - + Semantic value: ruble - + Semantic value: rupee - + Semantic value: s15 - + Semantic value: selected radio - + Semantic value: send - + Semantic value: setting - + Semantic value: settings - + Semantic value: shekel - + Semantic value: sheqel - + Semantic value: shipping - + Semantic value: shop - + Semantic value: shuffle - + Semantic value: shutdown - + Semantic value: sidebar - + Semantic value: signing - + Semantic value: signup - + Semantic value: sliders - + Semantic value: soccer - + Semantic value: sort alphabet ascending - + Semantic value: sort alphabet descending - + Semantic value: sort ascending - + Semantic value: sort content ascending - + Semantic value: sort content descending - + Semantic value: sort descending - + Semantic value: sort numeric ascending - + Semantic value: sort numeric descending - + Semantic value: sound - + Semantic value: spy - + Semantic value: stripe card - + Semantic value: student - + Semantic value: talk - + Semantic value: target - + Semantic value: teletype - + Semantic value: television - + Semantic value: text cursor - + Semantic value: text telephone - + Semantic value: theme - + Semantic value: thumb tack - + Semantic value: time - + Semantic value: tm - + Semantic value: toggle down - + Semantic value: toggle left - + Semantic value: toggle right - + Semantic value: toggle up - + Semantic value: translate - + Semantic value: travel - + Semantic value: treatment - + Semantic value: triangle down - + Semantic value: triangle left - + Semantic value: triangle right - + Semantic value: triangle up - + Semantic value: try - + Semantic value: unhide - + Semantic value: unlinkify - + Semantic value: unmute - + Semantic value: usd - + Semantic value: user cancel - + Semantic value: user close - + Semantic value: user delete - + Semantic value: user x - + Semantic value: vcard - + Semantic value: video camera - + Semantic value: video play - + Semantic value: volume control phone - + Semantic value: wait - + Semantic value: warning circle - + Semantic value: warning sign - + Semantic value: warning - + Semantic value: wi-fi - + Semantic value: winner - + Semantic value: wizard - + Semantic value: woman - + Semantic value: won - + Semantic value: wordpress beginner - + Semantic value: wordpress forms - + Semantic value: world - + Semantic value: write square - + Semantic value: x - + Semantic value: yen - + Semantic value: zip - + Semantic value: zoom - + Semantic value: bitbucket square - + Semantic value: checkmark box - + Semantic value: circle thin - + Semantic value: compose - + Semantic value: conversation - + Semantic value: credit card alternative - + Semantic value: currency - + Semantic value: dashboard - + Semantic value: diamond - + Semantic value: disk - + Semantic value: external share - + Semantic value: external square - + Semantic value: external - + Semantic value: facebook official - + Semantic value: food - + Semantic value: hourglass zero - + Semantic value: level down - + Semantic value: level up - + Semantic value: log out - + Semantic value: meanpath - + Semantic value: money - + Semantic value: move - + Semantic value: pencil - + Semantic value: protect - + Semantic value: radio - + Semantic value: remove bookmark - + Semantic value: resize horizontal - + Semantic value: resize vertical - + Semantic value: spoon - + Semantic value: star half empty - + Semantic value: star half full - + Semantic value: ticket - + Semantic value: times rectangle - + Semantic value: write - + Semantic value: youtube play - + Semantic value: left dropdown - + Corner - + + + None + + + + + Default corner + + + + + Top left corner + + + + + Top right corner + + + + + Bottom left corner + + + + + Bottom right corner + + + Icon flip direction - + + + None + + + + + Flip horizontally + + + + + Flip vertically + + + Icon rotation + + + None + + + + + Clockwise rotation + + + + + Counterclockwise rotation + + Size + + + None + + + + + Mini size + + + + + Tiny size + + + + + Small size + + + + + Large size + + + + + Big size + + + + + Huge size + + + + + Massive size + +