Skip to content

rtk-file-picker-button

Last updated View as MarkdownAgent setup

Properties

Property Type Required Default Description
filter string - File type filter to open file picker with
icon keyof IconPack1 - Icon
iconPack IconPack1 defaultIconPack Icon pack
label string - Label for tooltip
t RtkI18n1 useLanguage() Language

Usage Examples

Basic Usage

<!-- component.html -->
<rtk-file-picker-button></rtk-file-picker-button>

With Properties

<!-- component.html -->
<rtk-file-picker-button
 filter="example"
 [icon]="defaultIconPack"
 label="example">
</rtk-file-picker-button>

Was this helpful?