wix-style-react
Version:
28 lines (23 loc) • 620 B
JavaScript
export const _structure = `
<FilePicker
mainLabel="Main Action Label"
subLabel="Supportive label or description"
/>;`;
export const _supportedFormats = `
<FilePicker
mainLabel="Choose Image"
supportedFormats=".png, .jpg, .gif"
/>;`;
export const _maxSize = `
<FilePicker
maxSize="8000000"
subLabel="No file chosen (Max size 8MB)"
/>;`;
export const _errorMessage = `
<FilePicker
supportedFormats=".png, .pdf"
error
errorMessage="Failed to upload. File is too large."
/>;`;
export const _header = `
<FilePicker header={<StorybookComponents.Placeholder>Header</StorybookComponents.Placeholder>}/>;`;