summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IFontElement.cs
blob: f1f3a36f80522dcea127a1021f9f3886a3177d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Xamarin.Forms
{
	internal interface IFontElement
	{
		FontAttributes FontAttributes { get; }

		string FontFamily { get; }

		double FontSize { get; }
	}
}