> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Resim Girişi

<Frame>
  <img src="https://mintcdn.com/twenty/GMeQVDsw5ST_LXpE/images/user-guide/objects/objects.png?fit=max&auto=format&n=GMeQVDsw5ST_LXpE&q=85&s=f753eac3bada05044c64e7af9ddea9ab" alt="Başlık" width="1440" height="680" data-path="images/user-guide/objects/objects.png" />
</Frame>

Kullanıcıların bir resim yüklemesine ve kaldırmasına olanak tanır.

<Tabs>
  <Tab title="Kullanım">
    ```jsx theme={null}
    import { ImageInput } from "@/ui/input/components/ImageInput";

    export const MyComponent = () => {
      return <ImageInput/>;
    };
    ```
  </Tab>

  <Tab title="Özellikler">
    | Özellikler  | Tür      | Açıklama                                                                            |
    | ----------- | -------- | ----------------------------------------------------------------------------------- |
    | resim       | dize     | Resim kaynağı URL’si                                                                |
    | onUpload    | function | Yeni bir resim yüklendiğinde çağrılan işlev. `File` nesnesini parametre olarak alır |
    | onRemove    | function | Kullanıcı, kaldırma düğmesine tıkladığında çağrılan fonksiyon                       |
    | onAbort     | function | Kullanıcı, yükleme sırasında iptale tıkladığında çağrılan fonksiyon                 |
    | yükleniyor  | boolean  | Bir resmin şu anda yüklenip yüklenmediğini gösterir                                 |
    | hata mesajı | string   | Resim girişi altında görüntülenmesi gereken isteğe bağlı hata mesajı                |
    | devre dışı  | boolean  | `true` ise, tüm giriş devre dışıdır ve butonlara tıklanamaz                         |
  </Tab>
</Tabs>
