Sha256: d798596f1ab02fb07a31f032dfa5be70c5cecd38b0fbf0f9c5cacf545eb65046
Contents?: true
Size: 883 Bytes
Versions: 2
Compression:
Stored size: 883 Bytes
Contents
import React from "react" import Icon from "../_icon" const IconDefault = (props) => { return ( <div style={{ display: "flex", flexDirection: "column"}}> <Icon color="primary" fixedWidth icon="user" size="2x" {...props} /> <Icon color="info" fixedWidth icon="recycle" size="2x" {...props} /> <Icon color="data_4" fixedWidth icon="frog" size="2x" {...props} /> <Icon color="text_lt_lighter" fixedWidth icon="vial" size="2x" {...props} /> <Icon color="roofing" fixedWidth icon="product-roofing" size="2x" {...props} /> </div> ) } export default IconDefault
Version data entries
2 entries across 2 versions & 2 rubygems