diff --git a/src/__snapshots__/index.test.tsx.snap b/src/__snapshots__/index.test.tsx.snap index aaa2bf9..00ae36b 100644 --- a/src/__snapshots__/index.test.tsx.snap +++ b/src/__snapshots__/index.test.tsx.snap @@ -893,6 +893,60 @@ exports[`With className array Icon Home 1`] = ` `; +exports[`With className array Icon Lightbulb 1`] = ` +
+ + + + + + +
+`; + +exports[`With className array Icon LightbulbOn 1`] = ` +
+ + + + + + +
+`; + exports[`With className array Icon List 1`] = `
`; +exports[`With className object Icon Lightbulb 1`] = ` +
+ + + + + + +
+`; + +exports[`With className object Icon LightbulbOn 1`] = ` +
+ + + + + + +
+`; + exports[`With className object Icon List 1`] = `
`; +exports[`With className string Icon Lightbulb 1`] = ` +
+ + + + + + +
+`; + +exports[`With className string Icon LightbulbOn 1`] = ` +
+ + + + + + +
+`; + exports[`With className string Icon List 1`] = `
`; +exports[`Without className Icon Lightbulb 1`] = ` +
+ + + + + + +
+`; + +exports[`Without className Icon LightbulbOn 1`] = ` +
+ + + + + + +
+`; + exports[`Without className Icon List 1`] = `
); } + +export function Lightbulb(props: BaseProps): JSX.Element { + const className = cx(props.className, 'fill-current'); + return ( + + + + + + + ); +} + +export function LightbulbOn(props: BaseProps): JSX.Element { + const className = cx(props.className, 'fill-current'); + return ( + + + + + + + ); +}