# Component/Image/ImagePreview > Props: component-image-imagepreview.props.txt ## Examples ### Base ```tsx { render: args => { return ; } } ``` ### Border Radius ```tsx { render: args => { return ; }, args: { ...Base.args, borderRadius: 100 } } ``` ### Dark ```tsx { render: args => { return ; }, args: { backgroundDark: true, src: 'https://cf.res.s.alpha.zigzag.kr/pds/images/PostyWh.svg' } } ``` ### Fill ```tsx { render: args => { return ; }, args: { width: '100%', height: '100%', src: 'https://cf.res.s.alpha.zigzag.kr/pds/images/PostyWh.svg' } } ``` ### Onload Error ```tsx { render: args => { return Small Medium ; } } ``` ### Size ```tsx { render: args => { return Small Medium ; } } ``` ### Sync Src ```tsx { render: args => { const [src, setSrc] = React.useState(''); useEffect(() => { setTimeout(() => setSrc(validImageSrc), 1500); }, []); return ; } } ``` ### With Label ```tsx { render: args => { return ; }, args: { label: '대표 이미지' } } ```