diff options
author | 2020-04-18 19:53:27 +0200 | |
---|---|---|
committer | 2020-07-08 11:05:15 +0200 | |
commit | e29feef8ba4f95f286039fcc1ca2e53bfe5019c5 (patch) | |
tree | ac3e4e8bce0fcca65cd536f4a821fb5517b84947 /graphics/src/font.rs | |
parent | ada8d7c77f9e1d4a1de762b514c9610f7e09b17f (diff) | |
download | iced-e29feef8ba4f95f286039fcc1ca2e53bfe5019c5.tar.gz iced-e29feef8ba4f95f286039fcc1ca2e53bfe5019c5.tar.bz2 iced-e29feef8ba4f95f286039fcc1ca2e53bfe5019c5.zip |
Render arrow icon in `ComboBox`
Diffstat (limited to 'graphics/src/font.rs')
-rw-r--r-- | graphics/src/font.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/graphics/src/font.rs b/graphics/src/font.rs index bcc28857..5c62681c 100644 --- a/graphics/src/font.rs +++ b/graphics/src/font.rs @@ -31,3 +31,9 @@ pub const ICONS: iced_native::Font = iced_native::Font::External { #[cfg(feature = "font-icons")] #[cfg_attr(docsrs, doc(cfg(feature = "font-icons")))] pub const CHECKMARK_ICON: char = '\u{F00C}'; + +/// The `char` representing a ▼ icon in the built-in [`ICONS`] font. +/// +/// [`ICONS`]: const.ICONS.html +#[cfg(feature = "font-icons")] +pub const ARROW_DOWN_ICON: char = '\u{E800}'; |